-
Notifications
You must be signed in to change notification settings - Fork 71
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
MNT Update @methods on class docblocks
- Loading branch information
1 parent
6abaacf
commit 90e5926
Showing
11 changed files
with
29 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,8 +7,6 @@ | |
use Symbiote\AdvancedWorkflow\DataObjects\WorkflowInstance; | ||
|
||
/** | ||
* | ||
* | ||
* @author Marcus Nyeholt <[email protected]> | ||
*/ | ||
class SetPropertyWorkflowAction extends WorkflowAction | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,6 +11,7 @@ | |
* @author [email protected] | ||
* @license BSD License (http://silverstripe.org/bsd-license/) | ||
* @package advancedworkflow | ||
* @method WorkflowDefinition Definition() | ||
*/ | ||
class ImportedWorkflowTemplate extends DataObject | ||
{ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,10 +21,12 @@ | |
* the action(s) that occur while in that state. An action can then have | ||
* subsequent transitions out of the current state. | ||
* | ||
* @method WorkflowDefinition WorkflowDef() | ||
* @author [email protected] | ||
* @license BSD License (http://silverstripe.org/bsd-license/) | ||
* @package advancedworkflow | ||
* @method Member Member() | ||
* @method SilverStripe\ORM\HasManyList<WorkflowTransition> Transitions() | ||
* @method WorkflowDefinition WorkflowDef() | ||
*/ | ||
class WorkflowAction extends DataObject | ||
{ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -49,6 +49,10 @@ | |
* @author [email protected] | ||
* @license BSD License (http://silverstripe.org/bsd-license/) | ||
* @package advancedworkflow | ||
* @method SilverStripe\ORM\HasManyList<WorkflowAction> Actions() | ||
* @method SilverStripe\ORM\ManyManyList<Group> Groups() | ||
* @method SilverStripe\ORM\HasManyList<WorkflowInstance> Instances() | ||
* @method SilverStripe\ORM\ManyManyList<Member> Users() | ||
*/ | ||
class WorkflowDefinition extends DataObject | ||
{ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -38,13 +38,15 @@ | |
* button (eg 'apply for approval'). This creates a standalone object | ||
* that maintains the state of the workflow process. | ||
* | ||
* @method WorkflowDefinition Definition() | ||
* @method WorkflowActionInstance CurrentAction() | ||
* @method Member Initiator() | ||
* | ||
* @author [email protected] | ||
* @license BSD License (http://silverstripe.org/bsd-license/) | ||
* @package advancedworkflow | ||
* @method SilverStripe\ORM\HasManyList<WorkflowActionInstance> Actions() | ||
* @method WorkflowActionInstance CurrentAction() | ||
* @method WorkflowDefinition Definition() | ||
* @method SilverStripe\ORM\ManyManyList<Group> Groups() | ||
* @method Member Initiator() | ||
* @method SilverStripe\ORM\ManyManyList<Member> Users() | ||
*/ | ||
class WorkflowInstance extends DataObject | ||
{ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -27,11 +27,13 @@ | |
* Therefore, any logic around whether the workflow can proceed should be | ||
* managed within this method. | ||
* | ||
* @method WorkflowAction Action() | ||
* @method WorkflowAction NextAction() | ||
* @author [email protected] | ||
* @license BSD License (http://silverstripe.org/bsd-license/) | ||
* @package advancedworkflow | ||
* @method WorkflowAction Action() | ||
* @method SilverStripe\ORM\ManyManyList<Group> Groups() | ||
* @method WorkflowAction NextAction() | ||
* @method SilverStripe\ORM\ManyManyList<Member> Users() | ||
*/ | ||
class WorkflowTransition extends DataObject | ||
{ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -35,6 +35,8 @@ | |
* @author [email protected] | ||
* @license BSD License (http://silverstripe.org/bsd-license/) | ||
* @package advancedworkflow | ||
* @method SilverStripe\ORM\ManyManyList<WorkflowDefinition> AdditionalWorkflowDefinitions() | ||
* @method WorkflowDefinition WorkflowDefinition() | ||
*/ | ||
class WorkflowApplicable extends DataExtension | ||
{ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -35,6 +35,8 @@ | |
* | ||
* @author [email protected] | ||
* @license BSD License http://silverstripe.org/bsd-license/ | ||
* @method QueuedJobDescriptor PublishJob() | ||
* @method QueuedJobDescriptor UnPublishJob() | ||
*/ | ||
class WorkflowEmbargoExpiryExtension extends DataExtension | ||
{ | ||
|