@@ -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', |
@@ -133,11 +133,11 @@ |
||
133 | 133 | { |
134 | 134 | foreach ($parameters as $key => $value) { |
135 | 135 | if (is_array($value)) { |
136 | - $flattened = $this->flattenParameters($value, $flattened, $prefix.$key.'.'); |
|
136 | + $flattened = $this->flattenParameters($value, $flattened, $prefix . $key . '.'); |
|
137 | 137 | continue; |
138 | 138 | } |
139 | 139 | |
140 | - $flattened[$prefix.$key] = $value; |
|
140 | + $flattened[$prefix . $key] = $value; |
|
141 | 141 | } |
142 | 142 | |
143 | 143 | return $flattened; |
@@ -55,7 +55,7 @@ |
||
55 | 55 | To show the metadata for a resource, pass its alias: |
56 | 56 | |
57 | 57 | $ php %command.full_name% sylius.user |
58 | -EOT |
|
58 | +eot |
|
59 | 59 | ); |
60 | 60 | $this->addArgument('resource', InputArgument::OPTIONAL, 'Resource to debug'); |
61 | 61 | } |
@@ -35,7 +35,7 @@ discard block |
||
35 | 35 | "username": "[email protected]", |
36 | 36 | "password": "sylius" |
37 | 37 | } |
38 | -EOT; |
|
38 | +eot; |
|
39 | 39 | |
40 | 40 | $this->client->request('POST', '/api/oauth/v2/token', [], [], ['CONTENT_TYPE' => 'application/json'], $data); |
41 | 41 | |
@@ -58,7 +58,7 @@ discard block |
||
58 | 58 | "grant_type": "refresh_token", |
59 | 59 | "refresh_token": "SampleRefreshTokenODllODY4ZTQyOThlNWIyMjA1ZDhmZjE1ZDYyMGMwOTUxOWM2NGFmNGRjNjQ2NDBhMDVlNGZjMmQ0YzgyNDM2Ng" |
60 | 60 | } |
61 | -EOT; |
|
61 | +eot; |
|
62 | 62 | |
63 | 63 | $this->client->request('POST', '/api/oauth/v2/token', [], [], ['CONTENT_TYPE' => 'application/json'], $data); |
64 | 64 |
@@ -20,24 +20,31 @@ |
||
20 | 20 | { |
21 | 21 | /** |
22 | 22 | * @param string $title |
23 | + * @return void |
|
23 | 24 | */ |
24 | 25 | public function titleReview($title); |
25 | 26 | |
26 | 27 | /** |
27 | 28 | * @param string $comment |
29 | + * @return void |
|
28 | 30 | */ |
29 | 31 | public function setComment($comment); |
30 | 32 | |
31 | 33 | /** |
32 | 34 | * @param string $author |
35 | + * @return void |
|
33 | 36 | */ |
34 | 37 | public function setAuthor($author); |
35 | 38 | |
36 | 39 | /** |
37 | 40 | * @param int $rate |
41 | + * @return void |
|
38 | 42 | */ |
39 | 43 | public function rateReview($rate); |
40 | 44 | |
45 | + /** |
|
46 | + * @return void |
|
47 | + */ |
|
41 | 48 | public function submitReview(); |
42 | 49 | |
43 | 50 | /** |
@@ -86,7 +86,7 @@ discard block |
||
86 | 86 | ) { |
87 | 87 | $review = $this->createProductReview($product, $title, $rating, $title, $customer); |
88 | 88 | if (null !== $daysSinceCreation) { |
89 | - $review->setCreatedAt(new \DateTime('-'.$daysSinceCreation.' days')); |
|
89 | + $review->setCreatedAt(new \DateTime('-' . $daysSinceCreation . ' days')); |
|
90 | 90 | } |
91 | 91 | |
92 | 92 | $this->productReviewRepository->add($review); |
@@ -114,7 +114,7 @@ discard block |
||
114 | 114 | { |
115 | 115 | $customer = $this->sharedStorage->get('customer'); |
116 | 116 | foreach ($rates as $key => $rate) { |
117 | - $review = $this->createProductReview($product, 'Title '.$key, $rate, 'Comment '.$key, $customer); |
|
117 | + $review = $this->createProductReview($product, 'Title ' . $key, $rate, 'Comment ' . $key, $customer); |
|
118 | 118 | $this->productReviewRepository->add($review); |
119 | 119 | } |
120 | 120 | } |
@@ -60,7 +60,7 @@ |
||
60 | 60 | { |
61 | 61 | /** @var ChoiceView $choice */ |
62 | 62 | foreach ($view->vars['choices'] as $choice) { |
63 | - $choice->label = str_repeat('— ', $choice->data->getLevel()).$choice->label; |
|
63 | + $choice->label = str_repeat('— ', $choice->data->getLevel()) . $choice->label; |
|
64 | 64 | } |
65 | 65 | } |
66 | 66 |
@@ -21,6 +21,7 @@ discard block |
||
21 | 21 | { |
22 | 22 | /** |
23 | 23 | * @throws \RuntimeException |
24 | + * @return void |
|
24 | 25 | */ |
25 | 26 | public function chooseDifferentBillingAddress(); |
26 | 27 | |
@@ -39,21 +40,25 @@ discard block |
||
39 | 40 | |
40 | 41 | /** |
41 | 42 | * @param AddressInterface $billingAddress |
43 | + * @return void |
|
42 | 44 | */ |
43 | 45 | public function specifyBillingAddress(AddressInterface $billingAddress); |
44 | 46 | |
45 | 47 | /** |
46 | 48 | * @param string $province |
49 | + * @return void |
|
47 | 50 | */ |
48 | 51 | public function selectBillingAddressProvince($province); |
49 | 52 | |
50 | 53 | /** |
51 | 54 | * @param AddressInterface $shippingAddress |
55 | + * @return void |
|
52 | 56 | */ |
53 | 57 | public function specifyShippingAddress(AddressInterface $shippingAddress); |
54 | 58 | |
55 | 59 | /** |
56 | 60 | * @param string $province |
61 | + * @return void |
|
57 | 62 | */ |
58 | 63 | public function selectShippingAddressProvince($province); |
59 | 64 | |
@@ -62,15 +67,20 @@ discard block |
||
62 | 67 | */ |
63 | 68 | public function canSignIn(); |
64 | 69 | |
70 | + /** |
|
71 | + * @return void |
|
72 | + */ |
|
65 | 73 | public function signIn(); |
66 | 74 | |
67 | 75 | /** |
68 | 76 | * @param string $email |
77 | + * @return void |
|
69 | 78 | */ |
70 | 79 | public function specifyEmail($email); |
71 | 80 | |
72 | 81 | /** |
73 | 82 | * @param string $password |
83 | + * @return void |
|
74 | 84 | */ |
75 | 85 | public function specifyPassword($password); |
76 | 86 | |
@@ -86,17 +96,25 @@ discard block |
||
86 | 96 | */ |
87 | 97 | public function getShippingAddressCountry(); |
88 | 98 | |
99 | + /** |
|
100 | + * @return void |
|
101 | + */ |
|
89 | 102 | public function nextStep(); |
90 | 103 | |
104 | + /** |
|
105 | + * @return void |
|
106 | + */ |
|
91 | 107 | public function backToStore(); |
92 | 108 | |
93 | 109 | /** |
94 | 110 | * @param string $provinceName |
111 | + * @return void |
|
95 | 112 | */ |
96 | 113 | public function specifyBillingAddressProvince($provinceName); |
97 | 114 | |
98 | 115 | /** |
99 | 116 | * @param string $provinceName |
117 | + * @return void |
|
100 | 118 | */ |
101 | 119 | public function specifyShippingAddressProvince($provinceName); |
102 | 120 | |
@@ -112,11 +130,13 @@ discard block |
||
112 | 130 | |
113 | 131 | /** |
114 | 132 | * @param AddressInterface $address |
133 | + * @return void |
|
115 | 134 | */ |
116 | 135 | public function selectShippingAddressFromAddressBook(AddressInterface $address); |
117 | 136 | |
118 | 137 | /** |
119 | 138 | * @param AddressInterface $address |
139 | + * @return void |
|
120 | 140 | */ |
121 | 141 | public function selectBillingAddressFromAddressBook(AddressInterface $address); |
122 | 142 |
@@ -22,6 +22,7 @@ discard block |
||
22 | 22 | { |
23 | 23 | /** |
24 | 24 | * @param string $customerName |
25 | + * @return boolean |
|
25 | 26 | */ |
26 | 27 | public function hasCustomer($customerName); |
27 | 28 | |
@@ -56,6 +57,7 @@ discard block |
||
56 | 57 | |
57 | 58 | /** |
58 | 59 | * @param string $code |
60 | + * @return void |
|
59 | 61 | */ |
60 | 62 | public function specifyTrackingCode($code); |
61 | 63 | |
@@ -68,6 +70,7 @@ discard block |
||
68 | 70 | |
69 | 71 | /** |
70 | 72 | * @param OrderInterface $order |
73 | + * @return void |
|
71 | 74 | */ |
72 | 75 | public function shipOrder(OrderInterface $order); |
73 | 76 | |
@@ -87,11 +90,13 @@ discard block |
||
87 | 90 | |
88 | 91 | /** |
89 | 92 | * @param OrderInterface $order |
93 | + * @return void |
|
90 | 94 | */ |
91 | 95 | public function completeOrderLastPayment(OrderInterface $order); |
92 | 96 | |
93 | 97 | /** |
94 | 98 | * @param OrderInterface $order |
99 | + * @return void |
|
95 | 100 | */ |
96 | 101 | public function refundOrderLastPayment(OrderInterface $order); |
97 | 102 | |
@@ -234,8 +239,14 @@ discard block |
||
234 | 239 | */ |
235 | 240 | public function getPaymentState(); |
236 | 241 | |
242 | + /** |
|
243 | + * @return void |
|
244 | + */ |
|
237 | 245 | public function cancelOrder(); |
238 | 246 | |
247 | + /** |
|
248 | + * @return void |
|
249 | + */ |
|
239 | 250 | public function deleteOrder(); |
240 | 251 | |
241 | 252 | /** |
@@ -33,11 +33,12 @@ discard block |
||
33 | 33 | /** |
34 | 34 | * @param string $key |
35 | 35 | * @param mixed $resource |
36 | + * @return void |
|
36 | 37 | */ |
37 | 38 | public function set($key, $resource); |
38 | 39 | |
39 | 40 | /** |
40 | - * @return mixed |
|
41 | + * @return string |
|
41 | 42 | */ |
42 | 43 | public function getLatestResource(); |
43 | 44 | |
@@ -45,6 +46,7 @@ discard block |
||
45 | 46 | * @param array $clipboard |
46 | 47 | * |
47 | 48 | * @throws \RuntimeException |
49 | + * @return void |
|
48 | 50 | */ |
49 | 51 | public function setClipboard(array $clipboard); |
50 | 52 | } |