@@ -141,7 +141,7 @@ discard block |
||
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 |
||
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 | { |
@@ -37,6 +37,9 @@ discard block |
||
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 |
||
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( |
@@ -11,7 +11,6 @@ |
||
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() |
@@ -14,7 +14,6 @@ |
||
14 | 14 | protected $value; |
15 | 15 | |
16 | 16 | /** |
17 | - * @param string $uuid |
|
18 | 17 | * @return UUID |
19 | 18 | * @throws \ValueObjects\Exception\InvalidNativeArgumentException |
20 | 19 | */ |
@@ -13,7 +13,6 @@ |
||
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() |