@@ -318,7 +318,7 @@ |
||
| 318 | 318 | return $product->getVariants()[0]; |
| 319 | 319 | } |
| 320 | 320 | |
| 321 | - if ($product->hasOptions()){ |
|
| 321 | + if ($product->hasOptions()) { |
|
| 322 | 322 | return $this->getVariant($request->request->get('options'), $product); |
| 323 | 323 | } |
| 324 | 324 | |
@@ -4,10 +4,8 @@ |
||
| 4 | 4 | |
| 5 | 5 | use FOS\RestBundle\View\View; |
| 6 | 6 | use FOS\RestBundle\View\ViewHandlerInterface; |
| 7 | -use Sylius\Component\Core\Model\ImageInterface; |
|
| 8 | 7 | use Sylius\Component\Core\Model\TaxonInterface; |
| 9 | 8 | use Sylius\Component\Taxonomy\Repository\TaxonRepositoryInterface; |
| 10 | -use Sylius\ShopApiPlugin\Factory\ImageViewFactoryInterface; |
|
| 11 | 9 | use Sylius\ShopApiPlugin\Factory\TaxonViewFactoryInterface; |
| 12 | 10 | use Sylius\ShopApiPlugin\View\TaxonView; |
| 13 | 11 | use Symfony\Bundle\FrameworkBundle\Controller\Controller; |
@@ -35,8 +35,7 @@ |
||
| 35 | 35 | Address::createFromArray($request->request->get('shippingAddress')), |
| 36 | 36 | Address::createFromArray( |
| 37 | 37 | $request->request->has('billingAddress') ? |
| 38 | - $request->request->get('billingAddress') : |
|
| 39 | - $request->request->get('shippingAddress') |
|
| 38 | + $request->request->get('billingAddress') : $request->request->get('shippingAddress') |
|
| 40 | 39 | ) |
| 41 | 40 | ); |
| 42 | 41 | |