@@ -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 $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 $value |
124 | 145 | * @param bool $multiple |
146 | + * @return void |
|
125 | 147 | */ |
126 | 148 | public function selectAutoCompleteFilterOption($option, $value, $multiple = false); |
127 | 149 | } |
@@ -22,6 +22,7 @@ discard block |
||
22 | 22 | |
23 | 23 | /** |
24 | 24 | * @param int|null $priority |
25 | + * @return void |
|
25 | 26 | */ |
26 | 27 | public function setPriority($priority); |
27 | 28 | |
@@ -32,6 +33,7 @@ discard block |
||
32 | 33 | |
33 | 34 | /** |
34 | 35 | * @param string $name |
36 | + * @return void |
|
35 | 37 | */ |
36 | 38 | public function nameIt($name); |
37 | 39 | |
@@ -49,35 +51,47 @@ discard block |
||
49 | 51 | |
50 | 52 | /** |
51 | 53 | * @param string $limit |
54 | + * @return void |
|
52 | 55 | */ |
53 | 56 | public function fillUsageLimit($limit); |
54 | 57 | |
58 | + /** |
|
59 | + * @return void |
|
60 | + */ |
|
55 | 61 | public function makeExclusive(); |
56 | 62 | |
63 | + /** |
|
64 | + * @return void |
|
65 | + */ |
|
57 | 66 | public function checkCouponBased(); |
58 | 67 | |
59 | 68 | /** |
60 | 69 | * @param string $name |
70 | + * @return void |
|
61 | 71 | */ |
62 | 72 | public function checkChannel($name); |
63 | 73 | |
64 | 74 | /** |
65 | 75 | * @param \DateTime $dateTime |
76 | + * @return void |
|
66 | 77 | */ |
67 | 78 | public function setStartsAt(\DateTime $dateTime); |
68 | 79 | |
69 | 80 | /** |
70 | 81 | * @param \DateTime $dateTime |
82 | + * @return void |
|
71 | 83 | */ |
72 | 84 | public function setEndsAt(\DateTime $dateTime); |
73 | 85 | |
74 | 86 | /** |
75 | 87 | * {@inheritdoc} |
88 | + * @return boolean |
|
76 | 89 | */ |
77 | 90 | public function hasStartsAt(\DateTime $dateTime); |
78 | 91 | |
79 | 92 | /** |
80 | 93 | * {@inheritdoc} |
94 | + * @return boolean |
|
81 | 95 | */ |
82 | 96 | public function hasEndsAt(\DateTime $dateTime); |
83 | 97 | } |
@@ -230,7 +230,7 @@ discard block |
||
230 | 230 | "code": "christmas-promotion", |
231 | 231 | "name": "Christmas Promotion" |
232 | 232 | } |
233 | -EOT; |
|
233 | +eot; |
|
234 | 234 | $this->client->request('POST', '/api/v1/promotions/', [], [], static::$authorizedHeaderWithContentType, $data); |
235 | 235 | |
236 | 236 | $response = $this->client->getResponse(); |
@@ -255,7 +255,7 @@ discard block |
||
255 | 255 | "MOB" |
256 | 256 | ] |
257 | 257 | } |
258 | -EOT; |
|
258 | +eot; |
|
259 | 259 | $this->client->request('POST', '/api/v1/promotions/', [], [], static::$authorizedHeaderWithContentType, $data); |
260 | 260 | |
261 | 261 | $response = $this->client->getResponse(); |
@@ -283,7 +283,7 @@ discard block |
||
283 | 283 | "time": "11:00" |
284 | 284 | } |
285 | 285 | } |
286 | -EOT; |
|
286 | +eot; |
|
287 | 287 | $this->client->request('POST', '/api/v1/promotions/', [], [], static::$authorizedHeaderWithContentType, $data); |
288 | 288 | |
289 | 289 | $response = $this->client->getResponse(); |
@@ -323,7 +323,7 @@ discard block |
||
323 | 323 | } |
324 | 324 | ] |
325 | 325 | } |
326 | -EOT; |
|
326 | +eot; |
|
327 | 327 | $this->client->request('POST', '/api/v1/promotions/', [], [], static::$authorizedHeaderWithContentType, $data); |
328 | 328 | |
329 | 329 | $response = $this->client->getResponse(); |
@@ -387,7 +387,7 @@ discard block |
||
387 | 387 | } |
388 | 388 | ] |
389 | 389 | } |
390 | -EOT; |
|
390 | +eot; |
|
391 | 391 | |
392 | 392 | $this->client->request('POST', '/api/v1/promotions/', [], [], static::$authorizedHeaderWithContentType, $data); |
393 | 393 | |
@@ -409,7 +409,7 @@ discard block |
||
409 | 409 | "name": "Christmas Promotion", |
410 | 410 | "couponBased": true |
411 | 411 | } |
412 | -EOT; |
|
412 | +eot; |
|
413 | 413 | $this->client->request('POST', '/api/v1/promotions/', [], [], static::$authorizedHeaderWithContentType, $data); |
414 | 414 | |
415 | 415 | $response = $this->client->getResponse(); |
@@ -431,7 +431,7 @@ discard block |
||
431 | 431 | "exclusive": true, |
432 | 432 | "priority": 0 |
433 | 433 | } |
434 | -EOT; |
|
434 | +eot; |
|
435 | 435 | $this->client->request('POST', '/api/v1/promotions/', [], [], static::$authorizedHeaderWithContentType, $data); |
436 | 436 | |
437 | 437 | $response = $this->client->getResponse(); |
@@ -453,7 +453,7 @@ discard block |
||
453 | 453 | "name": "Monday promotion", |
454 | 454 | "priority": 0 |
455 | 455 | } |
456 | -EOT; |
|
456 | +eot; |
|
457 | 457 | $this->client->request('PUT', $this->getPromotionUrl($promotion), [], [], static::$authorizedHeaderWithContentType, $data); |
458 | 458 | $response = $this->client->getResponse(); |
459 | 459 | |
@@ -479,7 +479,7 @@ discard block |
||
479 | 479 | { |
480 | 480 | "exclusive": true |
481 | 481 | } |
482 | -EOT; |
|
482 | +eot; |
|
483 | 483 | $this->client->request('PATCH', $this->getPromotionUrl($promotion), [], [], static::$authorizedHeaderWithContentType, $data); |
484 | 484 | $response = $this->client->getResponse(); |
485 | 485 | $this->assertResponseCode($response, Response::HTTP_NO_CONTENT); |
@@ -43,7 +43,7 @@ |
||
43 | 43 | return $this->createQueryBuilder('o') |
44 | 44 | ->innerJoin('o.translations', 'translation', 'WITH', 'translation.locale = :locale') |
45 | 45 | ->andWhere('translation.name LIKE :name') |
46 | - ->setParameter('name', '%'.$phrase.'%') |
|
46 | + ->setParameter('name', '%' . $phrase . '%') |
|
47 | 47 | ->setParameter('locale', $locale) |
48 | 48 | ->getQuery() |
49 | 49 | ->getResult() |