@@ -12,7 +12,6 @@ |
||
| 12 | 12 | namespace spec\Sylius\Component\Shipping\Checker; |
| 13 | 13 | |
| 14 | 14 | use PhpSpec\ObjectBehavior; |
| 15 | -use Sylius\Component\Registry\ServiceRegistryInterface; |
|
| 16 | 15 | use Sylius\Component\Shipping\Checker\ShippingMethodEligibilityChecker; |
| 17 | 16 | use Sylius\Component\Shipping\Checker\ShippingMethodEligibilityCheckerInterface; |
| 18 | 17 | use Sylius\Component\Shipping\Model\ShippableInterface; |
@@ -26,6 +26,7 @@ discard block |
||
| 26 | 26 | |
| 27 | 27 | /** |
| 28 | 28 | * @param string $provider |
| 29 | + * @return void |
|
| 29 | 30 | */ |
| 30 | 31 | public function setProvider($provider); |
| 31 | 32 | |
@@ -36,6 +37,7 @@ discard block |
||
| 36 | 37 | |
| 37 | 38 | /** |
| 38 | 39 | * @param string $identifier |
| 40 | + * @return void |
|
| 39 | 41 | */ |
| 40 | 42 | public function setIdentifier($identifier); |
| 41 | 43 | |
@@ -46,6 +48,7 @@ discard block |
||
| 46 | 48 | |
| 47 | 49 | /** |
| 48 | 50 | * @param string $accessToken |
| 51 | + * @return void |
|
| 49 | 52 | */ |
| 50 | 53 | public function setAccessToken($accessToken); |
| 51 | 54 | |
@@ -56,6 +59,7 @@ discard block |
||
| 56 | 59 | |
| 57 | 60 | /** |
| 58 | 61 | * @param string $refreshToken |
| 62 | + * @return void |
|
| 59 | 63 | */ |
| 60 | 64 | public function setRefreshToken($refreshToken); |
| 61 | 65 | } |
@@ -52,10 +52,10 @@ |
||
| 52 | 52 | /** |
| 53 | 53 | * @return string |
| 54 | 54 | */ |
| 55 | - public function getRefreshToken(); |
|
| 55 | + public function getRefreshToken(); |
|
| 56 | 56 | |
| 57 | - /** |
|
| 58 | - * @param string $refreshToken |
|
| 59 | - */ |
|
| 60 | - public function setRefreshToken($refreshToken); |
|
| 57 | + /** |
|
| 58 | + * @param string $refreshToken |
|
| 59 | + */ |
|
| 60 | + public function setRefreshToken($refreshToken); |
|
| 61 | 61 | } |
@@ -92,10 +92,10 @@ |
||
| 92 | 92 | $string .= '('; |
| 93 | 93 | |
| 94 | 94 | foreach ($this->getOptionValues() as $option) { |
| 95 | - $string .= $option->getOption()->getName().': '.$option->getValue().', '; |
|
| 95 | + $string .= $option->getOption()->getName() . ': ' . $option->getValue() . ', '; |
|
| 96 | 96 | } |
| 97 | 97 | |
| 98 | - $string = substr($string, 0, -2).')'; |
|
| 98 | + $string = substr($string, 0, -2) . ')'; |
|
| 99 | 99 | } |
| 100 | 100 | |
| 101 | 101 | return $string; |
@@ -58,7 +58,7 @@ |
||
| 58 | 58 | */ |
| 59 | 59 | public function theyAbandonedTheirCart(OrderInterface $cart, $amount, $time) |
| 60 | 60 | { |
| 61 | - $cart->setUpdatedAt(new \DateTime('-'.$amount.' '.$time)); |
|
| 61 | + $cart->setUpdatedAt(new \DateTime('-' . $amount . ' ' . $time)); |
|
| 62 | 62 | $this->orderManager->flush(); |
| 63 | 63 | } |
| 64 | 64 | |
@@ -46,7 +46,7 @@ |
||
| 46 | 46 | |
| 47 | 47 | function it_listens_on_pre_submit_data_event() |
| 48 | 48 | { |
| 49 | - $this->getSubscribedEvents()->shouldReturn([FormEvents::PRE_SUBMIT => 'preSubmit',]); |
|
| 49 | + $this->getSubscribedEvents()->shouldReturn([FormEvents::PRE_SUBMIT => 'preSubmit', ]); |
|
| 50 | 50 | } |
| 51 | 51 | |
| 52 | 52 | function it_sets_user_for_existing_customer( |
@@ -45,7 +45,7 @@ |
||
| 45 | 45 | SessionInterface $session, |
| 46 | 46 | OrderRepositoryInterface $orderRepository, |
| 47 | 47 | OrderInterface $cart |
| 48 | - ) { |
|
| 48 | + ) { |
|
| 49 | 49 | $session->has('session_key_name')->willReturn(true); |
| 50 | 50 | $session->get('session_key_name')->willReturn(12345); |
| 51 | 51 | $orderRepository->findCartById(12345)->willReturn($cart); |
@@ -45,7 +45,7 @@ |
||
| 45 | 45 | SessionInterface $session, |
| 46 | 46 | OrderRepositoryInterface $orderRepository, |
| 47 | 47 | OrderInterface $cart |
| 48 | - ) { |
|
| 48 | + ) { |
|
| 49 | 49 | $session->has('session_key_name')->willReturn(true); |
| 50 | 50 | $session->get('session_key_name')->willReturn(12345); |
| 51 | 51 | $orderRepository->findCartById(12345)->willReturn($cart); |
@@ -87,7 +87,7 @@ |
||
| 87 | 87 | 'targetEntity' => $subjectClass, |
| 88 | 88 | 'inversedBy' => 'attributes', |
| 89 | 89 | 'joinColumns' => [[ |
| 90 | - 'name' => $subject.'_id', |
|
| 90 | + 'name' => $subject . '_id', |
|
| 91 | 91 | 'referencedColumnName' => $targetEntityMetadata->fieldMappings['id']['columnName'], |
| 92 | 92 | 'nullable' => false, |
| 93 | 93 | 'onDelete' => 'CASCADE', |
@@ -39,7 +39,7 @@ |
||
| 39 | 39 | } |
| 40 | 40 | |
| 41 | 41 | /** |
| 42 | - * @return array |
|
| 42 | + * @return string[] |
|
| 43 | 43 | */ |
| 44 | 44 | public function getSubscribedEvents() |
| 45 | 45 | { |
@@ -56,7 +56,7 @@ discard block |
||
| 56 | 56 | | sylius.two | |
| 57 | 57 | +------------+ |
| 58 | 58 | |
| 59 | -EOT |
|
| 59 | +eot |
|
| 60 | 60 | , $display); |
| 61 | 61 | } |
| 62 | 62 | |
@@ -82,7 +82,7 @@ discard block |
||
| 82 | 82 | | whatever.something.elephants | camels | |
| 83 | 83 | +------------------------------+-----------------+ |
| 84 | 84 | |
| 85 | -EOT |
|
| 85 | +eot |
|
| 86 | 86 | , $display); |
| 87 | 87 | } |
| 88 | 88 | |
@@ -969,7 +969,7 @@ discard block |
||
| 969 | 969 | ], |
| 970 | 970 | ]; |
| 971 | 971 | $routeFactory->createRoute('/products/new', $createDefaults, [], [], '', [], ['GET', 'POST']) |
| 972 | - ->willReturn($createRoute); |
|
| 972 | + ->willReturn($createRoute); |
|
| 973 | 973 | $routeCollection->add('sylius_product_create', $createRoute)->shouldBeCalled(); |
| 974 | 974 | |
| 975 | 975 | $updateDefaults = [ |
@@ -979,7 +979,7 @@ discard block |
||
| 979 | 979 | ], |
| 980 | 980 | ]; |
| 981 | 981 | $routeFactory->createRoute('/products/{id}/edit', $updateDefaults, [], [], '', [], ['GET', 'PUT', 'PATCH']) |
| 982 | - ->willReturn($updateRoute); |
|
| 982 | + ->willReturn($updateRoute); |
|
| 983 | 983 | $routeCollection->add('sylius_product_update', $updateRoute)->shouldBeCalled(); |
| 984 | 984 | |
| 985 | 985 | $deleteDefaults = [ |
@@ -989,7 +989,7 @@ discard block |
||
| 989 | 989 | ], |
| 990 | 990 | ]; |
| 991 | 991 | $routeFactory->createRoute('/products/{id}', $deleteDefaults, [], [], '', [], ['DELETE']) |
| 992 | - ->willReturn($deleteRoute); |
|
| 992 | + ->willReturn($deleteRoute); |
|
| 993 | 993 | $routeCollection->add('sylius_product_delete', $deleteRoute)->shouldBeCalled(); |
| 994 | 994 | |
| 995 | 995 | $this->load($configuration, 'sylius.resource')->shouldReturn($routeCollection); |
@@ -47,7 +47,7 @@ discard block |
||
| 47 | 47 | <<<EOT |
| 48 | 48 | foo: bar |
| 49 | 49 | only: string |
| 50 | -EOT; |
|
| 50 | +eot; |
|
| 51 | 51 | |
| 52 | 52 | $this |
| 53 | 53 | ->shouldThrow(InvalidConfigurationException::class) |
@@ -61,7 +61,7 @@ discard block |
||
| 61 | 61 | $configuration = |
| 62 | 62 | <<<EOT |
| 63 | 63 | alias: sylius.foo |
| 64 | -EOT; |
|
| 64 | +eot; |
|
| 65 | 65 | |
| 66 | 66 | $this |
| 67 | 67 | ->shouldThrow(\InvalidArgumentException::class) |
@@ -90,7 +90,7 @@ discard block |
||
| 90 | 90 | $configuration = |
| 91 | 91 | <<<EOT |
| 92 | 92 | alias: sylius.product |
| 93 | -EOT; |
|
| 93 | +eot; |
|
| 94 | 94 | |
| 95 | 95 | $showDefaults = [ |
| 96 | 96 | '_controller' => 'sylius.controller.product:showAction', |
@@ -162,7 +162,7 @@ discard block |
||
| 162 | 162 | $configuration = |
| 163 | 163 | <<<EOT |
| 164 | 164 | alias: sylius.product_option |
| 165 | -EOT; |
|
| 165 | +eot; |
|
| 166 | 166 | |
| 167 | 167 | $showDefaults = [ |
| 168 | 168 | '_controller' => 'sylius.controller.product_option:showAction', |
@@ -237,7 +237,7 @@ discard block |
||
| 237 | 237 | identifier: code |
| 238 | 238 | criteria: |
| 239 | 239 | code: \$code |
| 240 | -EOT; |
|
| 240 | +eot; |
|
| 241 | 241 | |
| 242 | 242 | $showDefaults = [ |
| 243 | 243 | '_controller' => 'sylius.controller.product_option:showAction', |
@@ -319,7 +319,7 @@ discard block |
||
| 319 | 319 | <<<EOT |
| 320 | 320 | alias: sylius.product |
| 321 | 321 | path: super-duper-products |
| 322 | -EOT; |
|
| 322 | +eot; |
|
| 323 | 323 | |
| 324 | 324 | $showDefaults = [ |
| 325 | 325 | '_controller' => 'sylius.controller.product:showAction', |
@@ -392,7 +392,7 @@ discard block |
||
| 392 | 392 | <<<EOT |
| 393 | 393 | alias: sylius.product |
| 394 | 394 | form: sylius_product_custom |
| 395 | -EOT; |
|
| 395 | +eot; |
|
| 396 | 396 | |
| 397 | 397 | $showDefaults = [ |
| 398 | 398 | '_controller' => 'sylius.controller.product:showAction', |
@@ -467,7 +467,7 @@ discard block |
||
| 467 | 467 | <<<EOT |
| 468 | 468 | alias: sylius.product |
| 469 | 469 | section: admin |
| 470 | -EOT; |
|
| 470 | +eot; |
|
| 471 | 471 | |
| 472 | 472 | $showDefaults = [ |
| 473 | 473 | '_controller' => 'sylius.controller.product:showAction', |
@@ -545,7 +545,7 @@ discard block |
||
| 545 | 545 | <<<EOT |
| 546 | 546 | alias: sylius.product |
| 547 | 547 | templates: SyliusAdminBundle:Product |
| 548 | -EOT; |
|
| 548 | +eot; |
|
| 549 | 549 | |
| 550 | 550 | $showDefaults = [ |
| 551 | 551 | '_controller' => 'sylius.controller.product:showAction', |
@@ -620,7 +620,7 @@ discard block |
||
| 620 | 620 | <<<EOT |
| 621 | 621 | alias: sylius.product |
| 622 | 622 | except: ['show', 'delete'] |
| 623 | -EOT; |
|
| 623 | +eot; |
|
| 624 | 624 | |
| 625 | 625 | $indexDefaults = [ |
| 626 | 626 | '_controller' => 'sylius.controller.product:indexAction', |
@@ -672,7 +672,7 @@ discard block |
||
| 672 | 672 | <<<EOT |
| 673 | 673 | alias: sylius.product |
| 674 | 674 | only: ['create', 'index'] |
| 675 | -EOT; |
|
| 675 | +eot; |
|
| 676 | 676 | |
| 677 | 677 | $indexDefaults = [ |
| 678 | 678 | '_controller' => 'sylius.controller.product:indexAction', |
@@ -702,7 +702,7 @@ discard block |
||
| 702 | 702 | alias: sylius.product |
| 703 | 703 | except: ['show', 'delete'] |
| 704 | 704 | only: ['create'] |
| 705 | -EOT; |
|
| 705 | +eot; |
|
| 706 | 706 | |
| 707 | 707 | $this |
| 708 | 708 | ->shouldThrow(\InvalidArgumentException::class) |
@@ -732,7 +732,7 @@ discard block |
||
| 732 | 732 | <<<EOT |
| 733 | 733 | alias: sylius.product |
| 734 | 734 | redirect: update |
| 735 | -EOT; |
|
| 735 | +eot; |
|
| 736 | 736 | |
| 737 | 737 | $showDefaults = [ |
| 738 | 738 | '_controller' => 'sylius.controller.product:showAction', |
@@ -806,7 +806,7 @@ discard block |
||
| 806 | 806 | $configuration = |
| 807 | 807 | <<<EOT |
| 808 | 808 | alias: sylius.product |
| 809 | -EOT; |
|
| 809 | +eot; |
|
| 810 | 810 | |
| 811 | 811 | $showDefaults = [ |
| 812 | 812 | '_controller' => 'sylius.controller.product:showAction', |
@@ -882,7 +882,7 @@ discard block |
||
| 882 | 882 | alias: sylius.product |
| 883 | 883 | only: ['create', 'index'] |
| 884 | 884 | grid: sylius_admin_product |
| 885 | -EOT; |
|
| 885 | +eot; |
|
| 886 | 886 | |
| 887 | 887 | $indexDefaults = [ |
| 888 | 888 | '_controller' => 'sylius.controller.product:indexAction', |
@@ -935,7 +935,7 @@ discard block |
||
| 935 | 935 | bar: foo |
| 936 | 936 | update: |
| 937 | 937 | abc: xyz |
| 938 | -EOT; |
|
| 938 | +eot; |
|
| 939 | 939 | |
| 940 | 940 | $showDefaults = [ |
| 941 | 941 | '_controller' => 'sylius.controller.product:showAction', |
@@ -1025,7 +1025,7 @@ discard block |
||
| 1025 | 1025 | <<<EOT |
| 1026 | 1026 | alias: sylius.product |
| 1027 | 1027 | permission: true |
| 1028 | -EOT; |
|
| 1028 | +eot; |
|
| 1029 | 1029 | |
| 1030 | 1030 | $showDefaults = [ |
| 1031 | 1031 | '_controller' => 'sylius.controller.product:showAction', |