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
Pull Request — 3.0 (#6)
by
unknown
08:59
created
src/predaddy/messagehandling/DefaultFunctionDescriptor.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -59,6 +59,9 @@
 block discarded – undo
59 59
      */
60 60
     private $priority;
61 61
 
62
+    /**
63
+     * @param integer $priority
64
+     */
62 65
     public function __construct(CallableWrapper $callableWrapper, $priority)
63 66
     {
64 67
         $this->priority = (int) $priority;
Please login to merge, or discard this patch.
src/predaddy/util/test/EventSourcedFixture.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -50,6 +50,9 @@
 block discarded – undo
50 50
      */
51 51
     private $given = [];
52 52
 
53
+    /**
54
+     * @param string $aggregateClass
55
+     */
53 56
     public function __construct($aggregateClass)
54 57
     {
55 58
         $this->eventStore = new InMemoryEventStore();
Please login to merge, or discard this patch.
src/predaddy/util/test/Fixture.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -259,7 +259,7 @@  discard block
 block discarded – undo
259 259
      * The aggregate ID generated by the AR, or defined somehow else.
260 260
      * Can be obtained in order to do further tests if required.
261 261
      *
262
-     * @return AggregateId
262
+     * @return GenericAggregateId|null
263 263
      */
264 264
     public function getAggregateId()
265 265
     {
@@ -319,7 +319,7 @@  discard block
 block discarded – undo
319 319
     }
320 320
 
321 321
     /**
322
-     * @return ObjectClass
322
+     * @return string
323 323
      */
324 324
     protected function getAggregateClass()
325 325
     {
Please login to merge, or discard this patch.