Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

MNT Run module-standardiser #518

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,9 @@
},
"require-dev": {
"phpunit/phpunit": "^9.6",
"squizlabs/php_codesniffer": "^3"
"squizlabs/php_codesniffer": "^3",
"silverstripe/standards": "^1",
"phpstan/extension-installer": "^1.3"
},
"extra": {
"expose": [
Expand Down
3 changes: 3 additions & 0 deletions phpstan.neon.dist
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
parameters:
paths:
- src
1 change: 0 additions & 1 deletion src/DataObjects/WorkflowAction.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@
* 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
Expand Down
4 changes: 2 additions & 2 deletions src/DataObjects/WorkflowActionInstance.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@
* @license BSD License (http://silverstripe.org/bsd-license/)
* @package advancedworkflow
*
* @method WorkFlowInstance Workflow()
* @method WorkflowAction Baseaction()
* @method WorkflowInstance Workflow()
* @method WorkflowAction BaseAction()
* @method Member Member()
*/
class WorkflowActionInstance extends DataObject
Expand Down
Loading