@@ -195,7 +195,7 @@ |
||
| 195 | 195 | $item, |
| 196 | 196 | $relation->getTargetEntity(), |
| 197 | 197 | $level + 1, |
| 198 | - [ 'serializeRelation' => $serializeRelation ] |
|
| 198 | + ['serializeRelation' => $serializeRelation] |
|
| 199 | 199 | ); |
| 200 | 200 | } else { |
| 201 | 201 | $newData[$key] = $item; |
@@ -670,7 +670,7 @@ discard block |
||
| 670 | 670 | * createNewCart |
| 671 | 671 | * |
| 672 | 672 | * @access private |
| 673 | - * @return AbstractModel |
|
| 673 | + * @return \Mapado\RestClientSdk\Tests\Model\Cart |
|
| 674 | 674 | */ |
| 675 | 675 | private function createNewCart() |
| 676 | 676 | { |
@@ -689,7 +689,7 @@ discard block |
||
| 689 | 689 | * createCart |
| 690 | 690 | * |
| 691 | 691 | * @access private |
| 692 | - * @return void |
|
| 692 | + * @return \Mapado\RestClientSdk\Tests\Model\Cart |
|
| 693 | 693 | */ |
| 694 | 694 | private function createCart() |
| 695 | 695 | { |
@@ -703,7 +703,7 @@ discard block |
||
| 703 | 703 | * createKnownCartItem |
| 704 | 704 | * |
| 705 | 705 | * @access private |
| 706 | - * @return AbstractModel |
|
| 706 | + * @return \Mapado\RestClientSdk\Tests\Model\CartItem |
|
| 707 | 707 | */ |
| 708 | 708 | private function createKnownCartItem() |
| 709 | 709 | { |
@@ -724,7 +724,7 @@ discard block |
||
| 724 | 724 | * createNewCartItem |
| 725 | 725 | * |
| 726 | 726 | * @access private |
| 727 | - * @return AbstractModel |
|
| 727 | + * @return \Mapado\RestClientSdk\Tests\Model\CartItem |
|
| 728 | 728 | */ |
| 729 | 729 | private function createNewCartItem($addKnownedProduct = true) |
| 730 | 730 | { |
@@ -747,7 +747,7 @@ discard block |
||
| 747 | 747 | * createNewProduct |
| 748 | 748 | * |
| 749 | 749 | * @access private |
| 750 | - * @return AbstractModel |
|
| 750 | + * @return \Mapado\RestClientSdk\Tests\Model\Product |
|
| 751 | 751 | */ |
| 752 | 752 | private function createNewProduct() |
| 753 | 753 | { |
@@ -764,7 +764,7 @@ discard block |
||
| 764 | 764 | * createKnownedProduct |
| 765 | 765 | * |
| 766 | 766 | * @access private |
| 767 | - * @return AbstractModel |
|
| 767 | + * @return \Mapado\RestClientSdk\Tests\Model\Product |
|
| 768 | 768 | */ |
| 769 | 769 | private function createKnownedProduct() |
| 770 | 770 | { |
@@ -787,6 +787,7 @@ discard block |
||
| 787 | 787 | * createNewInstance |
| 788 | 788 | * |
| 789 | 789 | * @access private |
| 790 | + * @param Mapping $mapping |
|
| 790 | 791 | * @return void |
| 791 | 792 | */ |
| 792 | 793 | private function createNewInstance($mapping = null) |
@@ -815,6 +816,9 @@ discard block |
||
| 815 | 816 | $this->testedInstance->setSdk($sdk); |
| 816 | 817 | } |
| 817 | 818 | |
| 819 | + /** |
|
| 820 | + * @param string $modelName |
|
| 821 | + */ |
|
| 818 | 822 | private function getCartRepositoryMock($sdk, $restClient, $modelName) |
| 819 | 823 | { |
| 820 | 824 | $repository = new \mock\Mapado\RestClientSdk\EntityRepository( |
@@ -75,7 +75,7 @@ discard block |
||
| 75 | 75 | ->array($data = $this->testedInstance->serialize( |
| 76 | 76 | $cart, |
| 77 | 77 | 'Mapado\RestClientSdk\Tests\Model\Cart', |
| 78 | - [ 'serializeRelations' => ['cart_items'] ] |
|
| 78 | + ['serializeRelations' => ['cart_items']] |
|
| 79 | 79 | )) |
| 80 | 80 | ->isIdenticalTo([ |
| 81 | 81 | '@id' => '/v1/carts/8', |
@@ -103,7 +103,7 @@ discard block |
||
| 103 | 103 | ->array($data = $this->testedInstance->serialize( |
| 104 | 104 | $cart, |
| 105 | 105 | 'Mapado\RestClientSdk\Tests\Model\Cart', |
| 106 | - [ 'serializeRelations' => ['cart_items'] ] |
|
| 106 | + ['serializeRelations' => ['cart_items']] |
|
| 107 | 107 | )) |
| 108 | 108 | ->isIdenticalTo([ |
| 109 | 109 | '@id' => '/v1/carts/8', |
@@ -245,8 +245,8 @@ discard block |
||
| 245 | 245 | 'who' => 'John', |
| 246 | 246 | ], |
| 247 | 247 | 'cartItemDetailList' => [ |
| 248 | - [ 'name' => 'Bill' ], |
|
| 249 | - [ 'name' => 'Bill', ], |
|
| 248 | + ['name' => 'Bill'], |
|
| 249 | + ['name' => 'Bill', ], |
|
| 250 | 250 | ], |
| 251 | 251 | ], |
| 252 | 252 | ], |
@@ -275,7 +275,7 @@ discard block |
||
| 275 | 275 | ->array($data = $this->testedInstance->serialize( |
| 276 | 276 | $cart, |
| 277 | 277 | 'Mapado\RestClientSdk\Tests\Model\Cart', |
| 278 | - [ 'serializeRelations' => ['cart_items'] ] |
|
| 278 | + ['serializeRelations' => ['cart_items']] |
|
| 279 | 279 | )) |
| 280 | 280 | ->isIdenticalTo([ |
| 281 | 281 | '@id' => '/v1/carts/8', |
@@ -338,7 +338,7 @@ discard block |
||
| 338 | 338 | ->then |
| 339 | 339 | ->object($cartItemDetail->getCartItem()) |
| 340 | 340 | ->isInstanceOf('Mapado\RestClientSdk\Tests\Model\CartItem') |
| 341 | - ->exception(function () use ($testedInstance, $cartItemDetail) { |
|
| 341 | + ->exception(function() use ($testedInstance, $cartItemDetail) { |
|
| 342 | 342 | $testedInstance->serialize($cartItemDetail, 'Mapado\RestClientSdk\Tests\Model\CartItemDetail'); |
| 343 | 343 | }) |
| 344 | 344 | ->isInstanceOf('Mapado\RestClientSdk\Exception\SdkException') |
@@ -513,7 +513,7 @@ discard block |
||
| 513 | 513 | ->array($data = $this->testedInstance->serialize( |
| 514 | 514 | $cart, |
| 515 | 515 | 'Mapado\RestClientSdk\Tests\Model\Cart', |
| 516 | - [ 'serializeRelations' => ['cart_items'] ] |
|
| 516 | + ['serializeRelations' => ['cart_items']] |
|
| 517 | 517 | )) |
| 518 | 518 | ->isIdenticalTo([ |
| 519 | 519 | 'weirdId' => '/v1/carts/8', |
@@ -541,7 +541,7 @@ discard block |
||
| 541 | 541 | ->array($data = $this->testedInstance->serialize( |
| 542 | 542 | $cart, |
| 543 | 543 | 'Mapado\RestClientSdk\Tests\Model\Cart', |
| 544 | - [ 'serializeRelations' => ['cart_items'] ] |
|
| 544 | + ['serializeRelations' => ['cart_items']] |
|
| 545 | 545 | )) |
| 546 | 546 | ->isIdenticalTo([ |
| 547 | 547 | 'weirdId' => '/v1/carts/8', |
@@ -803,7 +803,7 @@ discard block |
||
| 803 | 803 | |
| 804 | 804 | $cartRepositoryMock = $this->getCartRepositoryMock($sdk, $restClient, 'Mapado\RestClientSdk\Tests\Model\Cart'); |
| 805 | 805 | |
| 806 | - $this->calling($sdk)->getRepository = function ($modelName) use ($cartRepositoryMock) { |
|
| 806 | + $this->calling($sdk)->getRepository = function($modelName) use ($cartRepositoryMock) { |
|
| 807 | 807 | switch ($modelName) { |
| 808 | 808 | case 'Mapado\RestClientSdk\Tests\Model\Cart': |
| 809 | 809 | return $cartRepositoryMock; |
@@ -825,7 +825,7 @@ discard block |
||
| 825 | 825 | |
| 826 | 826 | $_this = $this; |
| 827 | 827 | |
| 828 | - $this->calling($repository)->find = function ($id) use ($_this) { |
|
| 828 | + $this->calling($repository)->find = function($id) use ($_this) { |
|
| 829 | 829 | return $_this->createCart(); |
| 830 | 830 | }; |
| 831 | 831 | |