@@ -14,9 +14,7 @@ |
||
14 | 14 | use Sylius\Bundle\ResourceBundle\DependencyInjection\Extension\AbstractResourceExtension; |
15 | 15 | use Symfony\Component\Config\FileLocator; |
16 | 16 | use Symfony\Component\DependencyInjection\ContainerBuilder; |
17 | -use Symfony\Component\DependencyInjection\Extension\PrependExtensionInterface; |
|
18 | 17 | use Symfony\Component\DependencyInjection\Loader\XmlFileLoader; |
19 | -use Symfony\Component\DependencyInjection\Reference; |
|
20 | 18 | |
21 | 19 | /** |
22 | 20 | * @author Paweł Jędrzejewski <[email protected]> |
@@ -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 | $this->registerResources('sylius', $config['driver'], $config['resources'], $container); |
33 | 33 |
@@ -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,12 +42,14 @@ 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 | |
45 | 49 | /** |
46 | 50 | * @param string $option |
47 | 51 | * @param string $value |
52 | + * @return void |
|
48 | 53 | */ |
49 | 54 | public function fillRuleOption($option, $value); |
50 | 55 | |
@@ -52,11 +57,13 @@ discard block |
||
52 | 57 | * @param string $channelName |
53 | 58 | * @param string $option |
54 | 59 | * @param string $value |
60 | + * @return void |
|
55 | 61 | */ |
56 | 62 | public function fillRuleOptionForChannel($channelName, $option, $value); |
57 | 63 | |
58 | 64 | /** |
59 | 65 | * @param string $actionName |
66 | + * @return void |
|
60 | 67 | */ |
61 | 68 | public function addAction($actionName); |
62 | 69 | |
@@ -64,12 +71,14 @@ discard block |
||
64 | 71 | * @param string $option |
65 | 72 | * @param string $value |
66 | 73 | * @param bool $multiple |
74 | + * @return void |
|
67 | 75 | */ |
68 | 76 | public function selectActionOption($option, $value, $multiple = false); |
69 | 77 | |
70 | 78 | /** |
71 | 79 | * @param string $option |
72 | 80 | * @param string $value |
81 | + * @return void |
|
73 | 82 | */ |
74 | 83 | public function fillActionOption($option, $value); |
75 | 84 | |
@@ -77,30 +86,41 @@ discard block |
||
77 | 86 | * @param string $channelName |
78 | 87 | * @param string $option |
79 | 88 | * @param string $value |
89 | + * @return void |
|
80 | 90 | */ |
81 | 91 | public function fillActionOptionForChannel($channelName, $option, $value); |
82 | 92 | |
83 | 93 | /** |
84 | 94 | * @param string $limit |
95 | + * @return void |
|
85 | 96 | */ |
86 | 97 | public function fillUsageLimit($limit); |
87 | 98 | |
99 | + /** |
|
100 | + * @return void |
|
101 | + */ |
|
88 | 102 | public function makeExclusive(); |
89 | 103 | |
104 | + /** |
|
105 | + * @return void |
|
106 | + */ |
|
90 | 107 | public function checkCouponBased(); |
91 | 108 | |
92 | 109 | /** |
93 | 110 | * @param string $name |
111 | + * @return void |
|
94 | 112 | */ |
95 | 113 | public function checkChannel($name); |
96 | 114 | |
97 | 115 | /** |
98 | 116 | * @param \DateTime $dateTime |
117 | + * @return void |
|
99 | 118 | */ |
100 | 119 | public function setStartsAt(\DateTime $dateTime); |
101 | 120 | |
102 | 121 | /** |
103 | 122 | * @param \DateTime $dateTime |
123 | + * @return void |
|
104 | 124 | */ |
105 | 125 | public function setEndsAt(\DateTime $dateTime); |
106 | 126 | |
@@ -115,6 +135,7 @@ discard block |
||
115 | 135 | * @param string $option |
116 | 136 | * @param string $value |
117 | 137 | * @param bool $multiple |
138 | + * @return void |
|
118 | 139 | */ |
119 | 140 | public function selectFilterOption($option, $value, $multiple = false); |
120 | 141 | } |
@@ -14,7 +14,6 @@ |
||
14 | 14 | use Sylius\Component\Core\Model\AdjustmentInterface; |
15 | 15 | use Sylius\Component\Core\Model\OrderInterface; |
16 | 16 | use Sylius\Component\Core\Model\OrderItemUnitInterface; |
17 | -use Sylius\Component\Promotion\Action\PromotionActionCommandInterface; |
|
18 | 17 | use Sylius\Component\Promotion\Model\PromotionInterface; |
19 | 18 | use Sylius\Component\Promotion\Model\PromotionSubjectInterface; |
20 | 19 | use Webmozart\Assert\Assert; |
@@ -15,7 +15,6 @@ |
||
15 | 15 | use Sylius\Component\Core\Model\OrderInterface; |
16 | 16 | use Sylius\Component\Core\Model\OrderItemInterface; |
17 | 17 | use Sylius\Component\Core\Model\OrderItemUnitInterface; |
18 | -use Sylius\Component\Promotion\Action\PromotionActionCommandInterface; |
|
19 | 18 | use Sylius\Component\Promotion\Model\PromotionInterface; |
20 | 19 | use Sylius\Component\Promotion\Model\PromotionSubjectInterface; |
21 | 20 | use Sylius\Component\Resource\Exception\UnexpectedTypeException; |
@@ -17,7 +17,6 @@ |
||
17 | 17 | use Sylius\Component\Customer\Context\CustomerContextInterface; |
18 | 18 | use Sylius\Component\Order\Context\CartContextInterface; |
19 | 19 | use Sylius\Component\Order\Context\CartNotFoundException; |
20 | -use Sylius\Component\Order\Model\OrderInterface; |
|
21 | 20 | |
22 | 21 | /** |
23 | 22 | * @author Mateusz Zalewski <[email protected]> |
@@ -12,7 +12,6 @@ |
||
12 | 12 | namespace Sylius\Bundle\CoreBundle\Form\Extension; |
13 | 13 | |
14 | 14 | use Sylius\Bundle\CoreBundle\Form\EventSubscriber\BuildChannelBasedPromotionRuleFormSubscriber; |
15 | -use Sylius\Bundle\PromotionBundle\Form\Type\Core\AbstractConfigurationType; |
|
16 | 15 | use Sylius\Bundle\PromotionBundle\Form\Type\PromotionRuleChoiceType; |
17 | 16 | use Sylius\Bundle\PromotionBundle\Form\Type\PromotionRuleType; |
18 | 17 | use Sylius\Component\Channel\Repository\ChannelRepositoryInterface; |
@@ -75,7 +75,7 @@ |
||
75 | 75 | * @param ReviewInterface $review |
76 | 76 | * @param ReviewableInterface[] $reviewSubjectsToRecalculate |
77 | 77 | * |
78 | - * @return array |
|
78 | + * @return ReviewableInterface[] |
|
79 | 79 | */ |
80 | 80 | private function removeReviewsAndExtractSubject(ReviewInterface $review, array $reviewSubjectsToRecalculate) |
81 | 81 | { |
@@ -14,9 +14,9 @@ |
||
14 | 14 | use Doctrine\Common\Persistence\ObjectManager; |
15 | 15 | use Sylius\Bundle\ResourceBundle\Doctrine\ORM\EntityRepository; |
16 | 16 | use Sylius\Bundle\ReviewBundle\Updater\ReviewableRatingUpdaterInterface; |
17 | +use Sylius\Component\Review\Model\ReviewInterface; |
|
17 | 18 | use Sylius\Component\Review\Model\ReviewableInterface; |
18 | 19 | use Sylius\Component\Review\Model\ReviewerInterface; |
19 | -use Sylius\Component\Review\Model\ReviewInterface; |
|
20 | 20 | |
21 | 21 | /** |
22 | 22 | * @author Grzegorz Sadowski <[email protected]> |
@@ -11,8 +11,6 @@ |
||
11 | 11 | |
12 | 12 | namespace Sylius\Bundle\PromotionBundle\Form\Type; |
13 | 13 | |
14 | -use Sylius\Bundle\PromotionBundle\Form\EventListener\BuildPromotionRuleFormSubscriber; |
|
15 | -use Sylius\Bundle\PromotionBundle\Form\Type\Core\AbstractConfigurationType; |
|
16 | 14 | use Sylius\Bundle\ResourceBundle\Form\Type\AbstractResourceType; |
17 | 15 | use Sylius\Component\Promotion\Checker\Rule\ItemTotalRuleChecker; |
18 | 16 | use Sylius\Component\Registry\ServiceRegistryInterface; |
@@ -32,6 +32,7 @@ discard block |
||
32 | 32 | |
33 | 33 | /** |
34 | 34 | * @param null|\DateTime $checkoutCompletedAt |
35 | + * @return void |
|
35 | 36 | */ |
36 | 37 | public function setCheckoutCompletedAt(\DateTime $checkoutCompletedAt = null); |
37 | 38 | |
@@ -40,6 +41,9 @@ discard block |
||
40 | 41 | */ |
41 | 42 | public function isCheckoutCompleted(); |
42 | 43 | |
44 | + /** |
|
45 | + * @return void |
|
46 | + */ |
|
43 | 47 | public function completeCheckout(); |
44 | 48 | |
45 | 49 | /** |
@@ -49,6 +53,7 @@ discard block |
||
49 | 53 | |
50 | 54 | /** |
51 | 55 | * @param string |
56 | + * @return void |
|
52 | 57 | */ |
53 | 58 | public function setNumber($number); |
54 | 59 | |
@@ -59,6 +64,7 @@ discard block |
||
59 | 64 | |
60 | 65 | /** |
61 | 66 | * @param string $notes |
67 | + * @return void |
|
62 | 68 | */ |
63 | 69 | public function setNotes($notes); |
64 | 70 | |
@@ -67,6 +73,9 @@ discard block |
||
67 | 73 | */ |
68 | 74 | public function getItems(); |
69 | 75 | |
76 | + /** |
|
77 | + * @return void |
|
78 | + */ |
|
70 | 79 | public function clearItems(); |
71 | 80 | |
72 | 81 | /** |
@@ -76,11 +85,13 @@ discard block |
||
76 | 85 | |
77 | 86 | /** |
78 | 87 | * @param OrderItemInterface $item |
88 | + * @return void |
|
79 | 89 | */ |
80 | 90 | public function addItem(OrderItemInterface $item); |
81 | 91 | |
82 | 92 | /** |
83 | 93 | * @param OrderItemInterface $item |
94 | + * @return void |
|
84 | 95 | */ |
85 | 96 | public function removeItem(OrderItemInterface $item); |
86 | 97 | |
@@ -96,6 +107,9 @@ discard block |
||
96 | 107 | */ |
97 | 108 | public function getItemsTotal(); |
98 | 109 | |
110 | + /** |
|
111 | + * @return void |
|
112 | + */ |
|
99 | 113 | public function recalculateItemsTotal(); |
100 | 114 | |
101 | 115 | /** |
@@ -115,6 +129,7 @@ discard block |
||
115 | 129 | |
116 | 130 | /** |
117 | 131 | * @param string $state |
132 | + * @return void |
|
118 | 133 | */ |
119 | 134 | public function setState($state); |
120 | 135 | |
@@ -139,6 +154,7 @@ discard block |
||
139 | 154 | |
140 | 155 | /** |
141 | 156 | * @param string|null $type |
157 | + * @return void |
|
142 | 158 | */ |
143 | 159 | public function removeAdjustmentsRecursively($type = null); |
144 | 160 | } |