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 ( 518fb8...f2b3cb )
by Davide
14:43
created
src/EventStore.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -140,7 +140,7 @@  discard block
 block discarded – undo
140 140
     /**
141 141
      * Read a single event
142 142
      *
143
-     * @param  string $eventUrl The url of the event
143
+     * @param  string $eventUrls The url of the event
144 144
      * @return Event
145 145
      */
146 146
     public function readEventBatch(array $eventUrls)
@@ -290,7 +290,7 @@  discard block
 block discarded – undo
290 290
 
291 291
     /**
292 292
      * @param  string                                       $uri
293
-     * @return \GuzzleHttp\Message\Request|RequestInterface
293
+     * @return RequestInterface
294 294
      */
295 295
     private function getJsonRequest($uri)
296 296
     {
Please login to merge, or discard this patch.
src/StreamFeed/StreamFeedIterator.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -36,6 +36,9 @@  discard block
 block discarded – undo
36 36
         $this->arraySortingFunction = $arraySortingFunction;
37 37
     }
38 38
 
39
+    /**
40
+     * @param string $streamName
41
+     */
39 42
     public static function forward(EventStoreInterface $eventStore, $streamName)
40 43
     {
41 44
         return new self(
@@ -47,6 +50,9 @@  discard block
 block discarded – undo
47 50
         );
48 51
     }
49 52
 
53
+    /**
54
+     * @param string $streamName
55
+     */
50 56
     public static function backward(EventStoreInterface $eventStore, $streamName)
51 57
     {
52 58
         return new self(
Please login to merge, or discard this patch.
src/ValueObjects/Enum/Enum.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -10,7 +10,6 @@
 block discarded – undo
10 10
     /**
11 11
      * Returns a new Enum object from passed value matching argument
12 12
      *
13
-     * @param  string $value
14 13
      * @return static
15 14
      */
16 15
     public static function fromNative()
Please login to merge, or discard this patch.
src/ValueObjects/Identity/UUID.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,6 @@
 block discarded – undo
13 13
     protected $value;
14 14
 
15 15
     /**
16
-     * @param  string                                                 $uuid
17 16
      * @return UUID
18 17
      * @throws \ValueObjects\Exception\InvalidNativeArgumentException
19 18
      */
Please login to merge, or discard this patch.
src/ValueObjects/StringLiteral/StringLiteral.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -12,7 +12,6 @@
 block discarded – undo
12 12
     /**
13 13
      * Returns a StringLiteral object given a PHP native string as parameter.
14 14
      *
15
-     * @param  string        $value
16 15
      * @return StringLiteral
17 16
      */
18 17
     public static function fromNative()
Please login to merge, or discard this patch.