@@ -50,6 +50,6 @@ |
||
50 | 50 | $parent = $this->taxonRepository->find($parentId); |
51 | 51 | Assert::notNull($parent, sprintf('There is no parent taxon with id %d.', $parentId)); |
52 | 52 | |
53 | - return $parent->getSlug().self::SLUG_SEPARATOR.$taxonSlug; |
|
53 | + return $parent->getSlug() . self::SLUG_SEPARATOR . $taxonSlug; |
|
54 | 54 | } |
55 | 55 | } |
@@ -44,12 +44,12 @@ |
||
44 | 44 | $taxonRepository->find(1)->willReturn($parent); |
45 | 45 | $parent->getSlug()->willReturn('board-games'); |
46 | 46 | |
47 | - $this->generate('Battle games', 1)->shouldReturn('board-games/battle-games');; |
|
47 | + $this->generate('Battle games', 1)->shouldReturn('board-games/battle-games'); ; |
|
48 | 48 | } |
49 | 49 | |
50 | 50 | function it_generates_slug_based_on_new_taxon_name_if_this_taxon_has_no_parent() |
51 | 51 | { |
52 | - $this->generate('Board games')->shouldReturn('board-games');; |
|
52 | + $this->generate('Board games')->shouldReturn('board-games'); ; |
|
53 | 53 | } |
54 | 54 | |
55 | 55 | function it_throws_exception_if_parent_taxon_with_given_id_does_not_exist( |
@@ -167,7 +167,7 @@ |
||
167 | 167 | */ |
168 | 168 | public function thisOrderHasNotBeenPaidForDays(OrderInterface $order, $amount, $time) |
169 | 169 | { |
170 | - $order->setCheckoutCompletedAt(new \DateTime('-'.$amount.' '.$time)); |
|
170 | + $order->setCheckoutCompletedAt(new \DateTime('-' . $amount . ' ' . $time)); |
|
171 | 171 | $this->orderManager->flush(); |
172 | 172 | |
173 | 173 | $this->unpaidOrdersStateUpdater->cancel(); |
@@ -33,12 +33,14 @@ discard block |
||
33 | 33 | |
34 | 34 | /** |
35 | 35 | * @param int $price |
36 | + * @return void |
|
36 | 37 | */ |
37 | 38 | public function specifyPrice($price); |
38 | 39 | |
39 | 40 | /** |
40 | 41 | * @param string $name |
41 | 42 | * @param string $localeCode |
43 | + * @return void |
|
42 | 44 | */ |
43 | 45 | public function nameItIn($name, $localeCode); |
44 | 46 | |
@@ -65,11 +67,18 @@ discard block |
||
65 | 67 | |
66 | 68 | /** |
67 | 69 | * @param TaxonInterface $taxon |
70 | + * @return void |
|
68 | 71 | */ |
69 | 72 | public function selectMainTaxon(TaxonInterface $taxon); |
70 | 73 | |
74 | + /** |
|
75 | + * @return void |
|
76 | + */ |
|
71 | 77 | public function disableTracking(); |
72 | 78 | |
79 | + /** |
|
80 | + * @return void |
|
81 | + */ |
|
73 | 82 | public function enableTracking(); |
74 | 83 | |
75 | 84 | /** |
@@ -87,20 +96,26 @@ discard block |
||
87 | 96 | /** |
88 | 97 | * @param string $path |
89 | 98 | * @param string $code |
99 | + * @return void |
|
90 | 100 | */ |
91 | 101 | public function attachImage($path, $code = null); |
92 | 102 | |
93 | 103 | /** |
94 | 104 | * @param string $code |
95 | 105 | * @param string $path |
106 | + * @return void |
|
96 | 107 | */ |
97 | 108 | public function changeImageWithCode($code, $path); |
98 | 109 | |
99 | 110 | /** |
100 | 111 | * @param string $code |
112 | + * @return void |
|
101 | 113 | */ |
102 | 114 | public function removeImageWithCode($code); |
103 | 115 | |
116 | + /** |
|
117 | + * @return void |
|
118 | + */ |
|
104 | 119 | public function removeFirstImage(); |
105 | 120 | |
106 | 121 | /** |
@@ -123,6 +138,7 @@ discard block |
||
123 | 138 | /** |
124 | 139 | * @param ProductAssociationTypeInterface $productAssociationType |
125 | 140 | * @param string[] $productsNames |
141 | + * @return void |
|
126 | 142 | */ |
127 | 143 | public function associateProducts(ProductAssociationTypeInterface $productAssociationType, array $productsNames); |
128 | 144 | |
@@ -137,6 +153,7 @@ discard block |
||
137 | 153 | /** |
138 | 154 | * @param string $productName |
139 | 155 | * @param ProductAssociationTypeInterface $productAssociationType |
156 | + * @return void |
|
140 | 157 | */ |
141 | 158 | public function removeAssociatedProduct($productName, ProductAssociationTypeInterface $productAssociationType); |
142 | 159 | } |
@@ -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 | /** |
@@ -69,7 +69,7 @@ discard block |
||
69 | 69 | * @Transform /^address is "([^"]+)", "([^"]+)", "([^"]+)", "([^"]+)" for "([^"]+)"$/ |
70 | 70 | * @Transform /^address to "([^"]+)", "([^"]+)", "([^"]+)", "([^"]+)" for "([^"]+)"$/ |
71 | 71 | */ |
72 | - public function createNewAddressWith($cityName, $street, $postcode, $countryName, $customerName, $provinceName = null) |
|
72 | + public function createNewAddressWith($cityName, $street, $postcode, $countryName, $customerName, $provinceName = null) |
|
73 | 73 | { |
74 | 74 | $countryCode = $this->countryNameConverter->convertToCode($countryName); |
75 | 75 | $customerName = explode(' ', $customerName); |
@@ -107,7 +107,7 @@ discard block |
||
107 | 107 | public function getByStreet($street) |
108 | 108 | { |
109 | 109 | $address = $this->addressRepository->findOneBy(['street' => $street]); |
110 | - Assert::notNull($address, sprintf('Cannot find address by %s street' , $street)); |
|
110 | + Assert::notNull($address, sprintf('Cannot find address by %s street', $street)); |
|
111 | 111 | |
112 | 112 | return $address; |
113 | 113 | } |
@@ -11,13 +11,6 @@ |
||
11 | 11 | |
12 | 12 | namespace Sylius\Bundle\MailerBundle\DependencyInjection; |
13 | 13 | |
14 | -use Sylius\Bundle\MailerBundle\Form\Type\EmailType; |
|
15 | -use Sylius\Bundle\ResourceBundle\Controller\ResourceController; |
|
16 | -use Sylius\Bundle\ResourceBundle\Form\Type\ResourceChoiceType; |
|
17 | -use Sylius\Bundle\ResourceBundle\SyliusResourceBundle; |
|
18 | -use Sylius\Component\Mailer\Model\Email; |
|
19 | -use Sylius\Component\Mailer\Model\EmailInterface; |
|
20 | -use Sylius\Component\Resource\Factory\Factory; |
|
21 | 14 | use Symfony\Component\Config\Definition\Builder\ArrayNodeDefinition; |
22 | 15 | use Symfony\Component\Config\Definition\Builder\TreeBuilder; |
23 | 16 | use Symfony\Component\Config\Definition\ConfigurationInterface; |
@@ -11,9 +11,6 @@ |
||
11 | 11 | |
12 | 12 | namespace Sylius\Component\Mailer\Model; |
13 | 13 | |
14 | -use Sylius\Component\Resource\Model\TimestampableTrait; |
|
15 | -use Sylius\Component\Resource\Model\ToggleableTrait; |
|
16 | - |
|
17 | 14 | /** |
18 | 15 | * @author Paweł Jędrzejewski <[email protected]> |
19 | 16 | */ |
@@ -28,6 +28,7 @@ discard block |
||
28 | 28 | |
29 | 29 | /** |
30 | 30 | * @param string $code |
31 | + * @return void |
|
31 | 32 | */ |
32 | 33 | public function setCode($code); |
33 | 34 | |
@@ -38,11 +39,18 @@ discard block |
||
38 | 39 | |
39 | 40 | /** |
40 | 41 | * @param bool $enabled |
42 | + * @return void |
|
41 | 43 | */ |
42 | 44 | public function setEnabled($enabled); |
43 | 45 | |
46 | + /** |
|
47 | + * @return void |
|
48 | + */ |
|
44 | 49 | public function enable(); |
45 | 50 | |
51 | + /** |
|
52 | + * @return void |
|
53 | + */ |
|
46 | 54 | public function disable(); |
47 | 55 | |
48 | 56 | /** |
@@ -52,6 +60,7 @@ discard block |
||
52 | 60 | |
53 | 61 | /** |
54 | 62 | * @param string $subject |
63 | + * @return void |
|
55 | 64 | */ |
56 | 65 | public function setSubject($subject); |
57 | 66 | |
@@ -62,6 +71,7 @@ discard block |
||
62 | 71 | |
63 | 72 | /** |
64 | 73 | * @param string $content |
74 | + * @return void |
|
65 | 75 | */ |
66 | 76 | public function setContent($content); |
67 | 77 | |
@@ -72,6 +82,7 @@ discard block |
||
72 | 82 | |
73 | 83 | /** |
74 | 84 | * @param string $template |
85 | + * @return void |
|
75 | 86 | */ |
76 | 87 | public function setTemplate($template); |
77 | 88 | |
@@ -82,6 +93,7 @@ discard block |
||
82 | 93 | |
83 | 94 | /** |
84 | 95 | * @param string $senderName |
96 | + * @return void |
|
85 | 97 | */ |
86 | 98 | public function setSenderName($senderName); |
87 | 99 | |
@@ -92,6 +104,7 @@ discard block |
||
92 | 104 | |
93 | 105 | /** |
94 | 106 | * @param string $senderAddress |
107 | + * @return void |
|
95 | 108 | */ |
96 | 109 | public function setSenderAddress($senderAddress); |
97 | 110 | } |
@@ -11,11 +11,6 @@ |
||
11 | 11 | |
12 | 12 | namespace Sylius\Component\Mailer\Model; |
13 | 13 | |
14 | -use Sylius\Component\Resource\Model\CodeAwareInterface; |
|
15 | -use Sylius\Component\Resource\Model\ResourceInterface; |
|
16 | -use Sylius\Component\Resource\Model\TimestampableInterface; |
|
17 | -use Sylius\Component\Resource\Model\ToggleableInterface; |
|
18 | - |
|
19 | 14 | /** |
20 | 15 | * @author Paweł Jędrzejewski <[email protected]> |
21 | 16 | */ |