@@ -197,8 +197,8 @@ discard block |
||
197 | 197 | 'who' => 'John', |
198 | 198 | ], |
199 | 199 | 'cartItemDetailList' => [ |
200 | - [ 'name' => 'Bill', ], |
|
201 | - [ 'name' => 'Bill', ], |
|
200 | + ['name' => 'Bill', ], |
|
201 | + ['name' => 'Bill', ], |
|
202 | 202 | ], |
203 | 203 | ], |
204 | 204 | ], |
@@ -273,7 +273,7 @@ discard block |
||
273 | 273 | ->then |
274 | 274 | ->object($cartItemDetail->getCartItem()) |
275 | 275 | ->isInstanceOf('Mapado\RestClientSdk\Tests\Model\CartItem') |
276 | - ->exception(function () use ($testedInstance, $cartItemDetail) { |
|
276 | + ->exception(function() use ($testedInstance, $cartItemDetail) { |
|
277 | 277 | $testedInstance->serialize($cartItemDetail, 'Mapado\RestClientSdk\Tests\Model\CartItemDetail'); |
278 | 278 | }) |
279 | 279 | ->isInstanceOf('Mapado\RestClientSdk\Exception\SdkException') |
@@ -60,7 +60,7 @@ |
||
60 | 60 | ->object($testedInstance->getRepository('orders')) |
61 | 61 | ->isInstanceOf('Mapado\RestClientSdk\Tests\Model\ModelRepository') |
62 | 62 | |
63 | - ->exception(function () use ($testedInstance) { |
|
63 | + ->exception(function() use ($testedInstance) { |
|
64 | 64 | $testedInstance->getRepository('foo'); |
65 | 65 | }) |
66 | 66 | ->isInstanceOf('Mapado\RestClientSdk\Exception\MappingException') |
@@ -15,12 +15,12 @@ |
||
15 | 15 | private $firstPage = null; |
16 | 16 | |
17 | 17 | /** |
18 | - * @var string URI of the last page |
|
18 | + * @var string URI of the last page |
|
19 | 19 | */ |
20 | 20 | private $lastPage = null; |
21 | 21 | |
22 | 22 | /** |
23 | - * @var string URI of the next page |
|
23 | + * @var string URI of the next page |
|
24 | 24 | */ |
25 | 25 | private $nextPage = null; |
26 | 26 |