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