Completed
Push — symfony-3.3 ( 7e5783...b87070 )
by Kamil
20:59
created
src/Sylius/Behat/Page/Admin/Promotion/UpdatePageInterface.php 1 patch
Doc Comments   +14 added lines patch added patch discarded remove patch
@@ -22,6 +22,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 }
Please login to merge, or discard this patch.
tests/Controller/AdminUserApiTest.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -340,7 +340,7 @@
 block discarded – undo
340 340
         $this->client->request('DELETE', $this->getAdminUserUrl($user['admin']), [], [], static::$authorizedHeaderWithContentType);
341 341
 
342 342
         $response = $this->client->getResponse();
343
-        $this->assertResponse($response, 'admin_user/deletion_fail_response',  Response::HTTP_UNPROCESSABLE_ENTITY);
343
+        $this->assertResponse($response, 'admin_user/deletion_fail_response', Response::HTTP_UNPROCESSABLE_ENTITY);
344 344
     }
345 345
 
346 346
     /**
Please login to merge, or discard this patch.
Upper-Lower-Casing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -76,7 +76,7 @@  discard block
 block discarded – undo
76 76
             "plainPassword": "youShallNotPass",
77 77
             "localeCode": "en_US"
78 78
         }
79
-EOT;
79
+eot;
80 80
 
81 81
         $this->client->request('POST', '/api/v1/users/', [], [], static::$authorizedHeaderWithContentType, $data);
82 82
 
@@ -103,7 +103,7 @@  discard block
 block discarded – undo
103 103
             "localeCode": "en_US",
104 104
             "enabled": "true"
105 105
         }
106
-EOT;
106
+eot;
107 107
 
108 108
         $this->client->request('POST', '/api/v1/users/', [], [], static::$authorizedHeaderWithContentType, $data);
109 109
 
@@ -233,7 +233,7 @@  discard block
 block discarded – undo
233 233
             "localeCode": "fr_FR",
234 234
             "enabled": "true"
235 235
         }
236
-EOT;
236
+eot;
237 237
 
238 238
         $this->client->request('PUT', $this->getAdminUserUrl($users['admin1']), [], [], static::$authorizedHeaderWithContentType, $data);
239 239
 
@@ -273,7 +273,7 @@  discard block
 block discarded – undo
273 273
             "firstName": "John",
274 274
             "lastName": "Doe"
275 275
         }
276
-EOT;
276
+eot;
277 277
 
278 278
         $this->client->request('PATCH', $this->getAdminUserUrl($users['admin1']), [], [], static::$authorizedHeaderWithContentType, $data);
279 279
 
Please login to merge, or discard this patch.
tests/Controller/PromotionApiTest.php 1 patch
Upper-Lower-Casing   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -230,7 +230,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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);
Please login to merge, or discard this patch.
src/Sylius/Bundle/ProductBundle/Doctrine/ORM/ProductRepository.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -43,7 +43,7 @@
 block discarded – undo
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()
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/Admin/Promotion/CreatePage.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -11,7 +11,6 @@
 block discarded – undo
11 11
 
12 12
 namespace Sylius\Behat\Page\Admin\Promotion;
13 13
 
14
-use Behat\Mink\Driver\Selenium2Driver;
15 14
 use Behat\Mink\Element\NodeElement;
16 15
 use Behat\Mink\Exception\ElementNotFoundException;
17 16
 use Sylius\Behat\Behaviour\NamesIt;
Please login to merge, or discard this patch.
src/Sylius/Bundle/ProductBundle/Doctrine/ORM/ProductVariantRepository.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -145,7 +145,7 @@
 block discarded – undo
145 145
                 'translation.name LIKE :phrase',
146 146
                 'o.code LIKE :phrase'
147 147
             ))
148
-            ->setParameter('phrase', '%'.$phrase.'%')
148
+            ->setParameter('phrase', '%' . $phrase . '%')
149 149
             ->setParameter('locale', $locale)
150 150
             ->setParameter('productCode', $productCode)
151 151
             ->getQuery()
Please login to merge, or discard this patch.
src/Sylius/Bundle/ResourceBundle/Form/Type/FixedCollectionType.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -67,7 +67,7 @@
 block discarded – undo
67 67
     }
68 68
 
69 69
     /**
70
-     * @return callable
70
+     * @return \Closure
71 71
      */
72 72
     private function optionalCallableNormalizer()
73 73
     {
Please login to merge, or discard this patch.
src/Sylius/Component/Promotion/Model/PromotionActionInterface.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -20,16 +20,19 @@
 block discarded – undo
20 20
 {
21 21
     /**
22 22
      * @param string $type
23
+     * @return void
23 24
      */
24 25
     public function setType($type);
25 26
 
26 27
     /**
27 28
      * @param array $configuration
29
+     * @return void
28 30
      */
29 31
     public function setConfiguration(array $configuration);
30 32
 
31 33
     /**
32 34
      * @param PromotionInterface $promotion
35
+     * @return void
33 36
      */
34 37
     public function setPromotion(PromotionInterface $promotion = null);
35 38
 }
Please login to merge, or discard this patch.
src/Sylius/Component/Promotion/Model/PromotionRuleInterface.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -20,16 +20,19 @@
 block discarded – undo
20 20
 {
21 21
     /**
22 22
      * @param string $type
23
+     * @return void
23 24
      */
24 25
     public function setType($type);
25 26
 
26 27
     /**
27 28
      * @param array $configuration
29
+     * @return void
28 30
      */
29 31
     public function setConfiguration(array $configuration);
30 32
 
31 33
     /**
32 34
      * @param PromotionInterface $promotion
35
+     * @return void
33 36
      */
34 37
     public function setPromotion(PromotionInterface $promotion = null);
35 38
 }
Please login to merge, or discard this patch.