Completed
Branch master (f41992)
by Julien
08:12
created
Tests/Units/Model/Serializer.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -197,8 +197,8 @@  discard block
 block discarded – undo
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
 block discarded – undo
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')
Please login to merge, or discard this patch.
Tests/Units/SdkClient.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -60,7 +60,7 @@
 block discarded – undo
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')
Please login to merge, or discard this patch.
src/Collection/HydraPaginatedCollection.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -15,12 +15,12 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.