Add php doc blocks.

This commit is contained in:
James Cole
2017-11-25 15:20:53 +01:00
parent f7b1168e7c
commit 35647a062c
66 changed files with 235 additions and 84 deletions

View File

@@ -30,10 +30,12 @@ use Log;
/**
* @codeCoverageIgnore
* Class ActionFactory
*
* Class ActionFactory can create actions.
*/
class ActionFactory
{
/** @var array array of action types */
protected static $actionTypes = [];
/**

View File

@@ -31,10 +31,12 @@ use Log;
/**
* @codeCoverageIgnore
* Interface TriggerInterface
*
* Class TriggerFactory can create triggers.
*/
class TriggerFactory
{
/** @var array array with trigger types */
protected static $triggerTypes = [];
/**