GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.
Completed
Push — master ( 9d3cac...021792 )
by Robbie
9s
created
src/Extensions/WorkflowEmbargoExpiryExtension.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -535,7 +535,7 @@
 block discarded – undo
535 535
      * disabled.
536 536
      *
537 537
      * @param Member $member
538
-     * @return bool|null
538
+     * @return false|null
539 539
      */
540 540
     public function canEdit($member)
541 541
     {
Please login to merge, or discard this patch.
Unused Use Statements   -4 removed lines patch added patch discarded remove patch
@@ -4,16 +4,12 @@
 block discarded – undo
4 4
 
5 5
 use SilverStripe\Control\Controller;
6 6
 use SilverStripe\Core\Injector\Injector;
7
-use SilverStripe\Core\Manifest\ModuleLoader;
8 7
 use SilverStripe\Forms\FieldList;
9 8
 use SilverStripe\Forms\DatetimeField;
10 9
 use SilverStripe\Forms\HeaderField;
11 10
 use SilverStripe\Forms\LiteralField;
12
-use SilverStripe\ORM\ArrayList;
13 11
 use SilverStripe\ORM\DataExtension;
14
-use SilverStripe\ORM\DataQuery;
15 12
 use SilverStripe\ORM\FieldType\DBDatetime;
16
-use SilverStripe\ORM\Queries\SQLSelect;
17 13
 use SilverStripe\Security\Member;
18 14
 use SilverStripe\Security\Permission;
19 15
 use SilverStripe\View\Requirements;
Please login to merge, or discard this patch.
src/FormFields/WorkflowField.php 2 patches
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -33,6 +33,10 @@
 block discarded – undo
33 33
 
34 34
     protected $definition;
35 35
 
36
+    /**
37
+     * @param string $name
38
+     * @param string $title
39
+     */
36 40
     public function __construct($name, $title, WorkflowDefinition $definition)
37 41
     {
38 42
         $this->definition = $definition;
Please login to merge, or discard this patch.
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -5,7 +5,6 @@
 block discarded – undo
5 5
 use ReflectionClass;
6 6
 use SilverStripe\Control\HTTPResponse;
7 7
 use SilverStripe\Core\ClassInfo;
8
-use SilverStripe\Core\Manifest\ModuleLoader;
9 8
 use SilverStripe\Forms\FormField;
10 9
 use SilverStripe\ORM\ArrayList;
11 10
 use SilverStripe\Security\SecurityToken;
Please login to merge, or discard this patch.
src/FormFields/WorkflowFieldActionController.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -27,6 +27,10 @@
 block discarded – undo
27 27
     protected $parent;
28 28
     protected $name;
29 29
 
30
+    /**
31
+     * @param WorkflowField $parent
32
+     * @param string $name
33
+     */
30 34
     public function __construct($parent, $name)
31 35
     {
32 36
         $this->parent = $parent;
Please login to merge, or discard this patch.
src/FormFields/WorkflowFieldTransitionController.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -27,6 +27,10 @@
 block discarded – undo
27 27
     protected $parent;
28 28
     protected $name;
29 29
 
30
+    /**
31
+     * @param WorkflowField $parent
32
+     * @param string $name
33
+     */
30 34
     public function __construct($parent, $name)
31 35
     {
32 36
         $this->parent = $parent;
Please login to merge, or discard this patch.
src/Forms/FrontendWorkflowForm.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -3,7 +3,6 @@
 block discarded – undo
3 3
 namespace Symbiote\AdvancedWorkflow\Forms;
4 4
 
5 5
 use SilverStripe\Forms\Form;
6
-use FormResponse;
7 6
 use SilverStripe\Control\Director;
8 7
 use SilverStripe\Control\HTTPResponse;
9 8
 use SilverStripe\Core\Convert;
Please login to merge, or discard this patch.
src/Forms/gridfield/GridFieldWorkflowRestrictedEditButton.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -73,7 +73,7 @@  discard block
 block discarded – undo
73 73
      * Which columns are handled by this component
74 74
      *
75 75
      * @param type $gridField
76
-     * @return type
76
+     * @return string[]
77 77
      */
78 78
     public function getColumnsHandled($gridField)
79 79
     {
@@ -85,7 +85,7 @@  discard block
 block discarded – undo
85 85
      * @param DataObject $record
86 86
      * @param string $columnName
87 87
      *
88
-     * @return string - the HTML for the column
88
+     * @return \SilverStripe\ORM\FieldType\DBHTMLText - the HTML for the column
89 89
      */
90 90
     public function getColumnContent($gridField, $record, $columnName)
91 91
     {
Please login to merge, or discard this patch.
src/Services/WorkflowService.php 1 patch
Doc Comments   +4 added lines, -3 removed lines patch added patch discarded remove patch
@@ -82,6 +82,7 @@  discard block
 block discarded – undo
82 82
      * Will recursively query parent elements until it finds one, if available
83 83
      *
84 84
      * @param DataObject $dataObject
85
+     * @return null|DataObject
85 86
      */
86 87
     public function getDefinitionFor(DataObject $dataObject)
87 88
     {
@@ -140,6 +141,7 @@  discard block
 block discarded – undo
140 141
      * main workflow definition.
141 142
      *
142 143
      * @param DataObject object
144
+     * @param DataObject $object
143 145
      * @return array
144 146
      */
145 147
 
@@ -170,7 +172,7 @@  discard block
 block discarded – undo
170 172
      *
171 173
      * @param mixed $item
172 174
      * @param bool $includeComplete
173
-     * @return WorkflowInstance|null
175
+     * @return DataObject|null
174 176
      */
175 177
     public function getWorkflowFor($item, $includeComplete = false)
176 178
     {
@@ -194,6 +196,7 @@  discard block
 block discarded – undo
194 196
     /**
195 197
      * Get all the workflow action instances for an item
196 198
      *
199
+     * @param DataObject $item
197 200
      * @return DataList|null
198 201
      */
199 202
     public function getWorkflowHistoryFor($item, $limit = null)
@@ -333,7 +336,6 @@  discard block
 block discarded – undo
333 336
     /**
334 337
      * Get items that the passed-in user has awaiting for them to action
335 338
      *
336
-     * @param Member $member
337 339
      * @return DataList
338 340
      */
339 341
     public function userPendingItems(Member $user)
@@ -361,7 +363,6 @@  discard block
 block discarded – undo
361 363
     /**
362 364
      * Get items that the passed-in user has submitted for workflow review
363 365
      *
364
-     * @param Member $member
365 366
      * @return DataList
366 367
      */
367 368
     public function userSubmittedItems(Member $user)
Please login to merge, or discard this patch.
src/Templates/WorkflowTemplate.php 1 patch
Doc Comments   +5 added lines, -2 removed lines patch added patch discarded remove patch
@@ -83,6 +83,9 @@  discard block
 block discarded – undo
83 83
      */
84 84
     protected $structure;
85 85
 
86
+    /**
87
+     * @param string $name
88
+     */
86 89
     public function __construct($name, $description = '', $version = '0.0', $remindDays = 0, $sort = 0)
87 90
     {
88 91
         $this->name = $name;
@@ -131,7 +134,7 @@  discard block
 block discarded – undo
131 134
      * Creates the relevant data objects for this structure, returning an array
132 135
      * of actions in the order they've been created
133 136
      *
134
-     * @param WorkflowDefinition $definitino
137
+     * @param WorkflowDefinition $definition
135 138
      *              An optional workflow definition to bind the actions into
136 139
      * @return array
137 140
      */
@@ -183,7 +186,7 @@  discard block
 block discarded – undo
183 186
      * Create a workflow action based on a template
184 187
      *
185 188
      * @param string $name
186
-     * @param array $template
189
+     * @param array $actionTemplate
187 190
      * @param WorkflowDefinition $definition
188 191
      * @return WorkflowAction
189 192
      * @throws Exception
Please login to merge, or discard this patch.
src/Admin/WorkflowDefinitionImporter.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -24,6 +24,7 @@
 block discarded – undo
24 24
      *
25 25
      * @param string $name. If set, a single-value array comprising a WorkflowTemplate object who's first
26 26
      *                      constructor param matches $name is returned.
27
+     * @param string $name
27 28
      * @return WorkflowTemplate|WorkflowTemplate[]
28 29
      */
29 30
     public function getImportedWorkflows($name = null)
Please login to merge, or discard this patch.