Completed
Push — master ( 700729...28e2ac )
by Davide
04:50
created
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.
src/EventStore/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)
@@ -283,7 +283,7 @@  discard block
 block discarded – undo
283 283
 
284 284
     /**
285 285
      * @param  string                                       $uri
286
-     * @return \GuzzleHttp\Message\Request|RequestInterface
286
+     * @return RequestInterface
287 287
      */
288 288
     private function getJsonRequest($uri)
289 289
     {
Please login to merge, or discard this patch.