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 ( c0bd51...90df19 )
by Андрей
16:19 queued 08:25
created
src/DoctrineWorkflowStory.php 1 patch
Doc Comments   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -230,7 +230,7 @@  discard block
 block discarded – undo
230 230
      * @param string   $status
231 231
      * @param array    $previousIds
232 232
      *
233
-     * @return StepInterface|void
233
+     * @return integer
234 234
      *
235 235
      * @throws Exception\DoctrineRuntimeException
236 236
      * @throws \OldTown\Workflow\Spi\Doctrine\EntityRepository\Exception\RuntimeException
@@ -273,9 +273,9 @@  discard block
 block discarded – undo
273 273
     /**
274 274
      * @param int $entryId
275 275
      *
276
-     * @return \Doctrine\Common\Collections\ArrayCollection|Entity\CurrentStepInterface[]
276
+     * @return SplObjectStorage
277 277
      *
278
-     * @return StepInterface[]
278
+     * @return SplObjectStorage
279 279
      *
280 280
      * @throws Exception\DoctrineRuntimeException
281 281
      * @throws Exception\InvalidArgumentException
@@ -432,7 +432,7 @@  discard block
 block discarded – undo
432 432
     /**
433 433
      * Получение сущности по ее псевдониму
434 434
      *
435
-     * @param $alias
435
+     * @param string $alias
436 436
      *
437 437
      * @return mixed
438 438
      *
Please login to merge, or discard this patch.
src/Entity/AbstractStep.php 3 patches
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -119,7 +119,7 @@  discard block
 block discarded – undo
119 119
 
120 120
 
121 121
     /**
122
-     * @return string
122
+     * @return integer
123 123
      */
124 124
     public function getId()
125 125
     {
@@ -279,7 +279,7 @@  discard block
 block discarded – undo
279 279
     }
280 280
 
281 281
     /**
282
-     * @return string
282
+     * @return integer
283 283
      */
284 284
     public function getStepId()
285 285
     {
Please login to merge, or discard this patch.
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,8 +1,8 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * @link    https://github.com/old-town/workflow-doctrine
4
- * @author  Malofeykin Andrey  <[email protected]>
5
- */
3
+     * @link    https://github.com/old-town/workflow-doctrine
4
+     * @author  Malofeykin Andrey  <[email protected]>
5
+     */
6 6
 namespace OldTown\Workflow\Spi\Doctrine\Entity;
7 7
 
8 8
 use Doctrine\Common\Collections\ArrayCollection;
Please login to merge, or discard this patch.
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -114,7 +114,7 @@  discard block
 block discarded – undo
114 114
      */
115 115
     public function __construct()
116 116
     {
117
-        $this->previousSteps =  new ArrayCollection();
117
+        $this->previousSteps = new ArrayCollection();
118 118
     }
119 119
 
120 120
 
@@ -153,7 +153,7 @@  discard block
 block discarded – undo
153 153
      */
154 154
     public function setActionId($actionId = null)
155 155
     {
156
-        $this->actionId = null !== $actionId ? (integer)$actionId : $actionId;
156
+        $this->actionId = null !== $actionId ? (integer) $actionId : $actionId;
157 157
 
158 158
         return $this;
159 159
     }
@@ -173,7 +173,7 @@  discard block
 block discarded – undo
173 173
      */
174 174
     public function setCaller($caller = null)
175 175
     {
176
-        $this->caller = null !== $caller ? (string)$caller : $caller;
176
+        $this->caller = null !== $caller ? (string) $caller : $caller;
177 177
 
178 178
         return $this;
179 179
     }
@@ -253,7 +253,7 @@  discard block
 block discarded – undo
253 253
      */
254 254
     public function setOwner($owner)
255 255
     {
256
-        $this->owner = null !== $owner ? (string)$owner : $owner;
256
+        $this->owner = null !== $owner ? (string) $owner : $owner;
257 257
 
258 258
         return $this;
259 259
     }
@@ -273,7 +273,7 @@  discard block
 block discarded – undo
273 273
      */
274 274
     public function setStatus($status)
275 275
     {
276
-        $this->status = (string)$status;
276
+        $this->status = (string) $status;
277 277
 
278 278
         return $this;
279 279
     }
@@ -293,7 +293,7 @@  discard block
 block discarded – undo
293 293
      */
294 294
     public function setStepId($stepId)
295 295
     {
296
-        $this->stepId = (string)$stepId;
296
+        $this->stepId = (string) $stepId;
297 297
 
298 298
         return $this;
299 299
     }
Please login to merge, or discard this patch.
src/EntityRepository/StepRepository.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,8 +1,8 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * @link    https://github.com/old-town/workflow-doctrine
4
- * @author  Malofeykin Andrey  <[email protected]>
5
- */
3
+     * @link    https://github.com/old-town/workflow-doctrine
4
+     * @author  Malofeykin Andrey  <[email protected]>
5
+     */
6 6
 namespace OldTown\Workflow\Spi\Doctrine\EntityRepository;
7 7
 
8 8
 use Doctrine\ORM\EntityRepository;
Please login to merge, or discard this patch.
src/EntityRepository/Exception/RuntimeException.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,8 +1,8 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * @link    https://github.com/old-town/workflow-doctrine
4
- * @author  Malofeykin Andrey  <[email protected]>
5
- */
3
+     * @link    https://github.com/old-town/workflow-doctrine
4
+     * @author  Malofeykin Andrey  <[email protected]>
5
+     */
6 6
 namespace OldTown\Workflow\Spi\Doctrine\EntityRepository\Exception;
7 7
 
8 8
 use OldTown\Workflow\Spi\Doctrine\Exception\RuntimeException as Exception;
Please login to merge, or discard this patch.
src/EntityRepository/Exception/ExceptionInterface.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,8 +1,8 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * @link    https://github.com/old-town/workflow-doctrine
4
- * @author  Malofeykin Andrey  <[email protected]>
5
- */
3
+     * @link    https://github.com/old-town/workflow-doctrine
4
+     * @author  Malofeykin Andrey  <[email protected]>
5
+     */
6 6
 namespace OldTown\Workflow\Spi\Doctrine\EntityRepository\Exception;
7 7
 
8 8
 use OldTown\Workflow\Spi\Doctrine\Exception\ExceptionInterface as ParentExceptionInterface;
Please login to merge, or discard this patch.
src/EntityManagerFactory/SimpleEntityManagerFactory.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,8 +1,8 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * @link    https://github.com/old-town/workflow-doctrine
4
- * @author  Malofeykin Andrey  <[email protected]>
5
- */
3
+     * @link    https://github.com/old-town/workflow-doctrine
4
+     * @author  Malofeykin Andrey  <[email protected]>
5
+     */
6 6
 namespace OldTown\Workflow\Spi\Doctrine\EntityManagerFactory;
7 7
 
8 8
 use \Doctrine\ORM\EntityManagerInterface;
Please login to merge, or discard this patch.
src/EntityManagerFactory/Exception/RuntimeException.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,8 +1,8 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * @link    https://github.com/old-town/workflow-doctrine
4
- * @author  Malofeykin Andrey  <[email protected]>
5
- */
3
+     * @link    https://github.com/old-town/workflow-doctrine
4
+     * @author  Malofeykin Andrey  <[email protected]>
5
+     */
6 6
 namespace OldTown\Workflow\Spi\Doctrine\EntityManagerFactory\Exception;
7 7
 
8 8
 use OldTown\Workflow\Spi\Doctrine\Exception\RuntimeException as Exception;
Please login to merge, or discard this patch.
src/EntityManagerFactory/Exception/ExceptionInterface.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,8 +1,8 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * @link    https://github.com/old-town/workflow-doctrine
4
- * @author  Malofeykin Andrey  <[email protected]>
5
- */
3
+     * @link    https://github.com/old-town/workflow-doctrine
4
+     * @author  Malofeykin Andrey  <[email protected]>
5
+     */
6 6
 namespace OldTown\Workflow\Spi\Doctrine\EntityManagerFactory\Exception;
7 7
 
8 8
 use OldTown\Workflow\Spi\Doctrine\Exception\ExceptionInterface as ParentExceptionInterface;
Please login to merge, or discard this patch.
src/Entity/CurrentStep.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,8 +1,8 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * @link    https://github.com/old-town/workflow-doctrine
4
- * @author  Malofeykin Andrey  <[email protected]>
5
- */
3
+     * @link    https://github.com/old-town/workflow-doctrine
4
+     * @author  Malofeykin Andrey  <[email protected]>
5
+     */
6 6
 namespace OldTown\Workflow\Spi\Doctrine\Entity;
7 7
 
8 8
 use Doctrine\ORM\Mapping as ORM;
Please login to merge, or discard this patch.