Completed
Push — 1.3 ( af1b9f...c8d8d9 )
by Kamil
11:50
created
src/Sylius/Behat/Page/Admin/ProductOption/UpdatePageInterface.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -25,6 +25,7 @@  discard block
 block discarded – undo
25 25
     /**
26 26
      * @param string $name
27 27
      * @param string $languageCode
28
+     * @return void
28 29
      */
29 30
     public function nameItIn($name, $languageCode);
30 31
 
@@ -36,11 +37,13 @@  discard block
 block discarded – undo
36 37
     /**
37 38
      * @param string $code
38 39
      * @param string $value
40
+     * @return void
39 41
      */
40 42
     public function addOptionValue($code, $value);
41 43
 
42 44
     /**
43 45
      * @param string $optionValue
46
+     * @return void
44 47
      */
45 48
     public function removeOptionValue($optionValue);
46 49
 }
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/Admin/ProductVariant/CreatePageInterface.php 1 patch
Doc Comments   +10 added lines patch added patch discarded remove patch
@@ -22,12 +22,14 @@  discard block
 block discarded – undo
22 22
     /**
23 23
      * @param int $price
24 24
      * @param string $channelName
25
+     * @return void
25 26
      */
26 27
     public function specifyPrice($price, $channelName);
27 28
 
28 29
     /**
29 30
      * @param int $originalPrice
30 31
      * @param string $channelName
32
+     * @return void
31 33
      */
32 34
     public function specifyOriginalPrice($originalPrice, $channelName);
33 35
 
@@ -36,33 +38,39 @@  discard block
 block discarded – undo
36 38
      * @param int $width
37 39
      * @param int $depth
38 40
      * @param int $weight
41
+     * @return void
39 42
      */
40 43
     public function specifyHeightWidthDepthAndWeight($height, $width, $depth, $weight);
41 44
 
42 45
     /**
43 46
      * @param string $code
47
+     * @return void
44 48
      */
45 49
     public function specifyCode($code);
46 50
 
47 51
     /**
48 52
      * @param int $currentStock
53
+     * @return void
49 54
      */
50 55
     public function specifyCurrentStock($currentStock);
51 56
 
52 57
     /**
53 58
      * @param string $name
54 59
      * @param string $language
60
+     * @return void
55 61
      */
56 62
     public function nameItIn($name, $language);
57 63
 
58 64
     /**
59 65
      * @param string $optionName
60 66
      * @param string $optionValue
67
+     * @return void
61 68
      */
62 69
     public function selectOption($optionName, $optionValue);
63 70
 
64 71
     /**
65 72
      * @param string $name
73
+     * @return void
66 74
      */
67 75
     public function choosePricingCalculator($name);
68 76
 
@@ -73,6 +81,7 @@  discard block
 block discarded – undo
73 81
 
74 82
     /**
75 83
      * @param string $shippingCategoryName
84
+     * @return void
76 85
      */
77 86
     public function selectShippingCategory($shippingCategoryName);
78 87
 
@@ -83,6 +92,7 @@  discard block
 block discarded – undo
83 92
 
84 93
     /**
85 94
      * @param bool $isShippingRequired
95
+     * @return void
86 96
      */
87 97
     public function setShippingRequired($isShippingRequired);
88 98
 }
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/Admin/Product/UpdateConfigurableProductPage.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -240,7 +240,7 @@
 block discarded – undo
240 240
     /**
241 241
      * @param string $type
242 242
      *
243
-     * @return NodeElement
243
+     * @return string
244 244
      */
245 245
     private function getImageElementByType($type)
246 246
     {
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/Shop/Cart/SummaryPage.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -299,7 +299,7 @@
 block discarded – undo
299 299
 
300 300
     /**
301 301
      * @param string $attributeName
302
-     * @param string|array $selector
302
+     * @param string $selector
303 303
      *
304 304
      * @return bool
305 305
      *
Please login to merge, or discard this patch.
src/Sylius/Bundle/ResourceBundle/Controller/Parameters.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -19,6 +19,7 @@
 block discarded – undo
19 19
 {
20 20
     /**
21 21
      * {@inheritdoc}
22
+     * @param string $path
22 23
      */
23 24
     public function get($path, $default = null)
24 25
     {
Please login to merge, or discard this patch.
src/Sylius/Bundle/ThemeBundle/Filesystem/FilesystemInterface.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -47,7 +47,7 @@
 block discarded – undo
47 47
     /**
48 48
      * Checks the existence of files or directories.
49 49
      *
50
-     * @param string|array|\Traversable $files A filename, an array of files, or a \Traversable instance to check
50
+     * @param string $files A filename, an array of files, or a \Traversable instance to check
51 51
      *
52 52
      * @return bool true if the file exists, false otherwise
53 53
      */
Please login to merge, or discard this patch.
src/Sylius/Component/Registry/PrioritizedServiceRegistryInterface.php 1 patch
Doc Comments   +2 added lines patch added patch discarded remove patch
@@ -26,6 +26,7 @@  discard block
 block discarded – undo
26 26
      *
27 27
      * @throws ExistingServiceException
28 28
      * @throws \InvalidArgumentException
29
+     * @return void
29 30
      */
30 31
     public function register($service, int $priority = 0): void;
31 32
 
@@ -33,6 +34,7 @@  discard block
 block discarded – undo
33 34
      * @param object $service
34 35
      *
35 36
      * @throws NonExistingServiceException
37
+     * @return void
36 38
      */
37 39
     public function unregister($service): void;
38 40
 
Please login to merge, or discard this patch.
src/Sylius/Component/User/Canonicalizer/CanonicalizerInterface.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -15,5 +15,8 @@
 block discarded – undo
15 15
 
16 16
 interface CanonicalizerInterface
17 17
 {
18
+    /**
19
+     * @return string
20
+     */
18 21
     public function canonicalize(?string $string): ?string;
19 22
 }
Please login to merge, or discard this patch.
src/Sylius/Behat/Service/NotificationCheckerInterface.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -20,6 +20,7 @@
 block discarded – undo
20 20
 {
21 21
     /**
22 22
      * @throws NotificationExpectationMismatchException
23
+     * @return void
23 24
      */
24 25
     public function checkNotification(string $message, NotificationType $type): void;
25 26
 }
Please login to merge, or discard this patch.