@@ -22,16 +22,19 @@ discard block |
||
22 | 22 | { |
23 | 23 | /** |
24 | 24 | * @param string $code |
25 | + * @return void |
|
25 | 26 | */ |
26 | 27 | public function specifyCode($code); |
27 | 28 | |
28 | 29 | /** |
29 | 30 | * @param string $name |
31 | + * @return void |
|
30 | 32 | */ |
31 | 33 | public function nameIt($name); |
32 | 34 | |
33 | 35 | /** |
34 | 36 | * @param string $ruleName |
37 | + * @return void |
|
35 | 38 | */ |
36 | 39 | public function addRule($ruleName); |
37 | 40 | |
@@ -39,6 +42,7 @@ discard block |
||
39 | 42 | * @param string $option |
40 | 43 | * @param string $value |
41 | 44 | * @param bool $multiple |
45 | + * @return void |
|
42 | 46 | */ |
43 | 47 | public function selectRuleOption($option, $value, $multiple = false); |
44 | 48 | |
@@ -46,12 +50,14 @@ discard block |
||
46 | 50 | * @param string $option |
47 | 51 | * @param string|string[] $value |
48 | 52 | * @param bool $multiple |
53 | + * @return void |
|
49 | 54 | */ |
50 | 55 | public function selectAutocompleteRuleOption($option, $value, $multiple = false); |
51 | 56 | |
52 | 57 | /** |
53 | 58 | * @param string $option |
54 | 59 | * @param string $value |
60 | + * @return void |
|
55 | 61 | */ |
56 | 62 | public function fillRuleOption($option, $value); |
57 | 63 | |
@@ -59,11 +65,13 @@ discard block |
||
59 | 65 | * @param string $channelName |
60 | 66 | * @param string $option |
61 | 67 | * @param string $value |
68 | + * @return void |
|
62 | 69 | */ |
63 | 70 | public function fillRuleOptionForChannel($channelName, $option, $value); |
64 | 71 | |
65 | 72 | /** |
66 | 73 | * @param string $actionName |
74 | + * @return void |
|
67 | 75 | */ |
68 | 76 | public function addAction($actionName); |
69 | 77 | |
@@ -71,12 +79,14 @@ discard block |
||
71 | 79 | * @param string $option |
72 | 80 | * @param string $value |
73 | 81 | * @param bool $multiple |
82 | + * @return void |
|
74 | 83 | */ |
75 | 84 | public function selectActionOption($option, $value, $multiple = false); |
76 | 85 | |
77 | 86 | /** |
78 | 87 | * @param string $option |
79 | 88 | * @param string $value |
89 | + * @return void |
|
80 | 90 | */ |
81 | 91 | public function fillActionOption($option, $value); |
82 | 92 | |
@@ -84,30 +94,41 @@ discard block |
||
84 | 94 | * @param string $channelName |
85 | 95 | * @param string $option |
86 | 96 | * @param string $value |
97 | + * @return void |
|
87 | 98 | */ |
88 | 99 | public function fillActionOptionForChannel($channelName, $option, $value); |
89 | 100 | |
90 | 101 | /** |
91 | 102 | * @param string $limit |
103 | + * @return void |
|
92 | 104 | */ |
93 | 105 | public function fillUsageLimit($limit); |
94 | 106 | |
107 | + /** |
|
108 | + * @return void |
|
109 | + */ |
|
95 | 110 | public function makeExclusive(); |
96 | 111 | |
112 | + /** |
|
113 | + * @return void |
|
114 | + */ |
|
97 | 115 | public function checkCouponBased(); |
98 | 116 | |
99 | 117 | /** |
100 | 118 | * @param string $name |
119 | + * @return void |
|
101 | 120 | */ |
102 | 121 | public function checkChannel($name); |
103 | 122 | |
104 | 123 | /** |
105 | 124 | * @param \DateTime $dateTime |
125 | + * @return void |
|
106 | 126 | */ |
107 | 127 | public function setStartsAt(\DateTime $dateTime); |
108 | 128 | |
109 | 129 | /** |
110 | 130 | * @param \DateTime $dateTime |
131 | + * @return void |
|
111 | 132 | */ |
112 | 133 | public function setEndsAt(\DateTime $dateTime); |
113 | 134 | |
@@ -122,6 +143,7 @@ discard block |
||
122 | 143 | * @param string $option |
123 | 144 | * @param string|string[] $value |
124 | 145 | * @param bool $multiple |
146 | + * @return void |
|
125 | 147 | */ |
126 | 148 | public function selectAutoCompleteFilterOption($option, $value, $multiple = false); |
127 | 149 | } |
@@ -19,8 +19,8 @@ |
||
19 | 19 | use Psr\Http\Message\ResponseInterface; |
20 | 20 | use Psr\Http\Message\StreamInterface; |
21 | 21 | use Sylius\Bundle\AdminBundle\Controller\NotificationController; |
22 | -use Symfony\Component\HttpFoundation\Request; |
|
23 | 22 | use Symfony\Component\HttpFoundation\JsonResponse; |
23 | +use Symfony\Component\HttpFoundation\Request; |
|
24 | 24 | |
25 | 25 | /** |
26 | 26 | * @author Jan Góralski <[email protected]> |
@@ -37,7 +37,7 @@ |
||
37 | 37 | } |
38 | 38 | |
39 | 39 | /** |
40 | - * @return array |
|
40 | + * @return \Twig_SimpleFunction[] |
|
41 | 41 | */ |
42 | 42 | public function getFunctions() |
43 | 43 | { |
@@ -128,7 +128,7 @@ |
||
128 | 128 | } |
129 | 129 | |
130 | 130 | /** |
131 | - * @return array |
|
131 | + * @return integer[] |
|
132 | 132 | */ |
133 | 133 | public function getLimits() |
134 | 134 | { |
@@ -27,7 +27,7 @@ |
||
27 | 27 | public function load(array $config, ContainerBuilder $container) |
28 | 28 | { |
29 | 29 | $config = $this->processConfiguration($this->getConfiguration([], $container), $config); |
30 | - $loader = new XmlFileLoader($container, new FileLocator(__DIR__.'/../Resources/config')); |
|
30 | + $loader = new XmlFileLoader($container, new FileLocator(__DIR__ . '/../Resources/config')); |
|
31 | 31 | |
32 | 32 | $container->setParameter('sylius.admin.notification.enabled', $config['notifications']['enabled']); |
33 | 33 | $container->setParameter('sylius.admin.notification.frequency', $config['notifications']['frequency']); |
@@ -18,71 +18,95 @@ |
||
18 | 18 | */ |
19 | 19 | interface CreatePageInterface extends BaseCreatePageInterface |
20 | 20 | { |
21 | + /** |
|
22 | + * @return void |
|
23 | + */ |
|
21 | 24 | public function enable(); |
22 | 25 | |
26 | + /** |
|
27 | + * @return void |
|
28 | + */ |
|
23 | 29 | public function disable(); |
24 | 30 | |
25 | 31 | /** |
26 | 32 | * @param string $name |
33 | + * @return void |
|
27 | 34 | */ |
28 | 35 | public function nameIt($name); |
29 | 36 | |
30 | 37 | /** |
31 | 38 | * @param string $code |
39 | + * @return void |
|
32 | 40 | */ |
33 | 41 | public function specifyCode($code); |
34 | 42 | |
35 | 43 | /** |
36 | 44 | * @param string $description |
45 | + * @return void |
|
37 | 46 | */ |
38 | 47 | public function describeItAs($description); |
39 | 48 | |
40 | 49 | /** |
41 | 50 | * @param string $hostname |
51 | + * @return void |
|
42 | 52 | */ |
43 | 53 | public function setHostname($hostname); |
44 | 54 | |
45 | 55 | /** |
46 | 56 | * @param string $contactEmail |
57 | + * @return void |
|
47 | 58 | */ |
48 | 59 | public function setContactEmail($contactEmail); |
49 | 60 | |
50 | 61 | /** |
51 | 62 | * @param string $color |
63 | + * @return void |
|
52 | 64 | */ |
53 | 65 | public function defineColor($color); |
54 | 66 | |
55 | 67 | /** |
56 | 68 | * @param string $language |
69 | + * @return void |
|
57 | 70 | */ |
58 | 71 | public function chooseLocale($language); |
59 | 72 | |
60 | 73 | /** |
61 | 74 | * @param string $currencyCode |
75 | + * @return void |
|
62 | 76 | */ |
63 | 77 | public function chooseCurrency($currencyCode); |
64 | 78 | |
65 | 79 | /** |
66 | 80 | * @param string $taxZone |
81 | + * @return void |
|
67 | 82 | */ |
68 | 83 | public function chooseDefaultTaxZone($taxZone); |
69 | 84 | |
70 | 85 | /** |
71 | 86 | * @param string $locale |
87 | + * @return void |
|
72 | 88 | */ |
73 | 89 | public function chooseDefaultLocale($locale); |
74 | 90 | |
75 | 91 | /** |
76 | 92 | * @param string $currency |
93 | + * @return void |
|
77 | 94 | */ |
78 | 95 | public function chooseBaseCurrency($currency); |
79 | 96 | |
80 | 97 | /** |
81 | 98 | * @param string $taxCalculationStrategy |
99 | + * @return void |
|
82 | 100 | */ |
83 | 101 | public function chooseTaxCalculationStrategy($taxCalculationStrategy); |
84 | 102 | |
103 | + /** |
|
104 | + * @return void |
|
105 | + */ |
|
85 | 106 | public function allowToSkipShippingStep(); |
86 | 107 | |
108 | + /** |
|
109 | + * @return void |
|
110 | + */ |
|
87 | 111 | public function allowToSkipPaymentStep(); |
88 | 112 | } |
@@ -12,8 +12,8 @@ |
||
12 | 12 | namespace Sylius\Component\Attribute\AttributeType; |
13 | 13 | |
14 | 14 | use Sylius\Component\Attribute\Model\AttributeValueInterface; |
15 | -use Symfony\Component\Validator\Constraints\NotBlank; |
|
16 | 15 | use Symfony\Component\Validator\ConstraintViolationListInterface; |
16 | +use Symfony\Component\Validator\Constraints\NotBlank; |
|
17 | 17 | use Symfony\Component\Validator\Context\ExecutionContextInterface; |
18 | 18 | |
19 | 19 | /** |
@@ -11,8 +11,6 @@ |
||
11 | 11 | |
12 | 12 | namespace Sylius\Component\Attribute\Model; |
13 | 13 | |
14 | -use Doctrine\Common\Collections\ArrayCollection; |
|
15 | -use Doctrine\Common\Collections\Collection; |
|
16 | 14 | use Sylius\Component\Attribute\AttributeType\TextAttributeType; |
17 | 15 | use Sylius\Component\Resource\Model\TimestampableTrait; |
18 | 16 | use Sylius\Component\Resource\Model\TranslatableTrait; |
@@ -12,7 +12,6 @@ |
||
12 | 12 | namespace Sylius\Component\Core\Checker; |
13 | 13 | |
14 | 14 | use Sylius\Component\Core\Model\OrderInterface; |
15 | -use Sylius\Component\Core\Model\PaymentInterface; |
|
16 | 15 | use Sylius\Component\Payment\Resolver\PaymentMethodsResolverInterface; |
17 | 16 | |
18 | 17 | /** |