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 — dev ( 774ec1...36e137 )
by Андрей
06:09
created
src/Config/ArrayConfiguration.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -218,7 +218,7 @@
 block discarded – undo
218 218
     }
219 219
 
220 220
     /**
221
-     * @return \String[]
221
+     * @return string[]
222 222
      */
223 223
     public function getWorkflowNames()
224 224
     {
Please login to merge, or discard this patch.
src/Config/DefaultConfiguration.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -377,7 +377,7 @@  discard block
 block discarded – undo
377 377
      * Удаляет workflow
378 378
      *
379 379
      * @param string $workflow имя удаляемого workflow
380
-     * @return boolean в случае успешного удаления возвращает true, в противном случае false
380
+     * @return boolean|null в случае успешного удаления возвращает true, в противном случае false
381 381
      * @throws FactoryException
382 382
      */
383 383
     public function removeWorkflow($workflow)
@@ -391,7 +391,7 @@  discard block
 block discarded – undo
391 391
      * @param WorkflowDescriptor $descriptor дескриптор workflow
392 392
      * @param boolean $replace - флаг определяющий, можно ли замениить workflow
393 393
      *
394
-     * @return boolean
394
+     * @return boolean|null
395 395
      *
396 396
      * @throws FactoryException
397 397
      * @throws \OldTown\Workflow\Exception\InvalidWorkflowDescriptorException
Please login to merge, or discard this patch.
src/Loader/SecureDtdEntityResolver.php 1 patch
Doc Comments   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -44,7 +44,7 @@  discard block
 block discarded – undo
44 44
     /**
45 45
      * Возвращает dom документ
46 46
      *
47
-     * @param DomDocumentType $domDocumentType
47
+     * @param DOMDocumentType $domDocumentType
48 48
      *
49 49
      * @return string
50 50
      * @throws  \OldTown\Workflow\Exception\InvalidDtdSchemaException
@@ -74,7 +74,7 @@  discard block
 block discarded – undo
74 74
     }
75 75
 
76 76
     /**
77
-     * @param $path
77
+     * @param string $path
78 78
      *
79 79
      * @return string
80 80
      * @throws InvalidDtdSchemaException
@@ -149,7 +149,7 @@  discard block
 block discarded – undo
149 149
     }
150 150
 
151 151
     /**
152
-     * @param $uri
152
+     * @param string $uri
153 153
      * @return UriInterface
154 154
      */
155 155
     protected function uriFactory($uri)
@@ -166,7 +166,7 @@  discard block
 block discarded – undo
166 166
     /**
167 167
      * Возвращает путь до директории в которой находятся схемы для валидации
168 168
      *
169
-     * @return null|string
169
+     * @return string
170 170
      */
171 171
     public function getPathToSchemas()
172 172
     {
Please login to merge, or discard this patch.
src/Loader/WorkflowDescriptor.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -571,7 +571,7 @@
 block discarded – undo
571 571
 
572 572
 
573 573
     /**
574
-     * @param $id
574
+     * @param integer $id
575 575
      *
576 576
      * @return ActionDescriptor|null
577 577
      * @throws \OldTown\Workflow\Exception\ArgumentNotNumericException
Please login to merge, or discard this patch.
src/Spi/Memory/MemoryWorkflowStore.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -314,7 +314,7 @@  discard block
 block discarded – undo
314 314
     /**
315 315
      * Поиск по истории шагов
316 316
      *
317
-     * @param $entryId
317
+     * @param integer $entryId
318 318
      *
319 319
      * @return SimpleStep[]|SplObjectStorage
320 320
      */
@@ -687,7 +687,7 @@  discard block
 block discarded – undo
687 687
      *
688 688
      * @param $value1
689 689
      * @param $value2
690
-     * @param $operator
690
+     * @param integer $operator
691 691
      *
692 692
      * @return bool
693 693
      *
Please login to merge, or discard this patch.
src/Util/PhpShell/PhpShellConditionProvider.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -26,7 +26,7 @@
 block discarded – undo
26 26
      * @param TransientVarsInterface $transientVars
27 27
      * @param array $args
28 28
      * @param PropertySetInterface $ps
29
-     * @return bool
29
+     * @return boolean|string
30 30
      *
31 31
      * @throws \OldTown\Workflow\Exception\WorkflowException
32 32
      * @throws \OldTown\Workflow\Exception\RuntimeException
Please login to merge, or discard this patch.
src/WorkflowInterface.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -101,6 +101,7 @@  discard block
 block discarded – undo
101 101
      * If the new state is {@link com.opensymphony.workflow.spi.WorkflowEntry.KILLED}
102 102
      * or {@link com.opensymphony.workflow.spi.WorkflowEntry.COMPLETED}
103 103
      * then all current steps are moved to history steps. If the new state is
104
+     * @return void
104 105
      */
105 106
     public function changeEntryState($id, $newState);
106 107
 
@@ -110,6 +111,7 @@  discard block
 block discarded – undo
110 111
      * @param integer $actionId The action id to perform (action id's are listed in the workflow descriptor).
111 112
      * @param TransientVarsInterface $inputs The inputs to the workflow instance.
112 113
      * instance's current state.
114
+     * @return void
113 115
      */
114 116
     public function doAction($id, $actionId, TransientVarsInterface $inputs = null);
115 117
 
@@ -119,6 +121,7 @@  discard block
 block discarded – undo
119 121
      * @param integer $id The workflow instance id
120 122
      * @param integer $triggerId The id of the special trigger-function
121 123
      * @thrown WorkflowException
124
+     * @return void
122 125
      */
123 126
     public function executeTriggerFunction($id, $triggerId);
124 127
 
Please login to merge, or discard this patch.
test/phpunit/tests/Loader/WorkflowLoaderTest.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -87,7 +87,7 @@
 block discarded – undo
87 87
     }
88 88
 
89 89
     /**
90
-     * @param $uri
90
+     * @param string $uri
91 91
      * @return UriInterface
92 92
      */
93 93
     protected function uriFactory($uri)
Please login to merge, or discard this patch.
bootstrap/OldTownWorkflowBehatTestBootstrap/WorkflowDescriptorContext.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -771,7 +771,7 @@
 block discarded – undo
771 771
      * @param           $methodName
772 772
      * @param TableNode $table
773 773
      *
774
-     * @return mixed
774
+     * @return AbstractDescriptor
775 775
      * @throws \RuntimeException
776 776
      */
777 777
     public function getTheDescriptorUsingTheMethodOfTheArgumentsOfTheMethod($methodName, TableNode $table)
Please login to merge, or discard this patch.