Completed
Push — locale-in-url ( 6d9eda )
by Kamil
23:08
created
src/Sylius/Behat/Page/Admin/ExchangeRate/IndexPageInterface.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
      * @param string $currencyName
23
+     * @return void
23 24
      */
24 25
     public function chooseCurrencyFilter($currencyName);
25 26
 }
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/Admin/ExchangeRate/UpdatePageInterface.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -25,6 +25,7 @@
 block discarded – undo
25 25
 
26 26
     /**
27 27
      * @param string $ratio
28
+     * @return void
28 29
      */
29 30
     public function changeRatio($ratio);
30 31
 
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/Admin/Inventory/IndexPageInterface.php 1 patch
Doc Comments   +2 added lines patch added patch discarded remove patch
@@ -21,12 +21,14 @@
 block discarded – undo
21 21
     /**
22 22
      * @param string $field
23 23
      * @param string $type
24
+     * @return void
24 25
      */
25 26
     public function specifyFilterType($field, $type);
26 27
 
27 28
     /**
28 29
      * @param string $field
29 30
      * @param string $value
31
+     * @return void
30 32
      */
31 33
     public function specifyFilterValue($field, $value);
32 34
 }
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/Admin/Order/IndexPageInterface.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -20,31 +20,37 @@
 block discarded – undo
20 20
 {
21 21
     /**
22 22
      * @param \DateTime $dateTime
23
+     * @return void
23 24
      */
24 25
     public function specifyFilterDateFrom(\DateTime $dateTime);
25 26
 
26 27
     /**
27 28
      * @param \DateTime $dateTime
29
+     * @return void
28 30
      */
29 31
     public function specifyFilterDateTo(\DateTime $dateTime);
30 32
 
31 33
     /**
32 34
      * @param string $channelName
35
+     * @return void
33 36
      */
34 37
     public function chooseChannelFilter($channelName);
35 38
 
36 39
     /**
37 40
      * @param string $currencyName
41
+     * @return void
38 42
      */
39 43
     public function chooseCurrencyFilter($currencyName);
40 44
 
41 45
     /**
42 46
      * @param string $total
47
+     * @return void
43 48
      */
44 49
     public function specifyFilterTotalGreaterThan($total);
45 50
 
46 51
     /**
47 52
      * @param string $total
53
+     * @return void
48 54
      */
49 55
     public function specifyFilterTotalLessThan($total);
50 56
 }
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/Admin/Order/UpdatePageInterface.php 1 patch
Doc Comments   +2 added lines patch added patch discarded remove patch
@@ -21,11 +21,13 @@
 block discarded – undo
21 21
 {
22 22
     /**
23 23
      * @param AddressInterface $address
24
+     * @return void
24 25
      */
25 26
     public function specifyShippingAddress(AddressInterface $address);
26 27
 
27 28
     /**
28 29
      * @param AddressInterface $address
30
+     * @return void
29 31
      */
30 32
     public function specifyBillingAddress(AddressInterface $address);
31 33
 }
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/Admin/PaymentMethod/UpdatePageInterface.php 1 patch
Doc Comments   +9 added lines patch added patch discarded remove patch
@@ -18,17 +18,26 @@
 block discarded – undo
18 18
  */
19 19
 interface UpdatePageInterface extends BaseUpdatePageInterface
20 20
 {
21
+    /**
22
+     * @return void
23
+     */
21 24
     public function enable();
25
+
26
+    /**
27
+     * @return void
28
+     */
22 29
     public function disable();
23 30
 
24 31
     /**
25 32
      * @param string $name
26 33
      * @param string $languageCode
34
+     * @return void
27 35
      */
28 36
     public function nameIt($name, $languageCode);
29 37
 
30 38
     /**
31 39
      * @param string $gateway
40
+     * @return void
32 41
      */
33 42
     public function chooseGateway($gateway);
34 43
 
Please login to merge, or discard this patch.
Sylius/Behat/Page/Admin/Product/CreateConfigurableProductPageInterface.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -20,23 +20,27 @@
 block discarded – undo
20 20
 {
21 21
     /**
22 22
      * @param string $optionName
23
+     * @return void
23 24
      */
24 25
     public function selectOption($optionName);
25 26
     
26 27
     /**
27 28
      * @param string $code
29
+     * @return void
28 30
      */
29 31
     public function specifyCode($code);
30 32
 
31 33
     /**
32 34
      * @param string $name
33 35
      * @param string $localeCode
36
+     * @return void
34 37
      */
35 38
     public function nameItIn($name, $localeCode);
36 39
 
37 40
     /**
38 41
      * @param string $path
39 42
      * @param string $code
43
+     * @return void
40 44
      */
41 45
     public function attachImage($path, $code = null);
42 46
 }
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/Admin/Product/CreateSimpleProductPageInterface.php 1 patch
Doc Comments   +14 added lines patch added patch discarded remove patch
@@ -24,16 +24,19 @@  discard block
 block discarded – undo
24 24
     /**
25 25
      * @param string $channelName
26 26
      * @param int $price
27
+     * @return void
27 28
      */
28 29
     public function specifyPrice($channelName, $price);
29 30
 
30 31
     /**
31 32
      * @param string $name
33
+     * @return void
32 34
      */
33 35
     public function choosePricingCalculator($name);
34 36
 
35 37
     /**
36 38
      * @param string $channelName
39
+     * @return void
37 40
      */
38 41
     public function checkChannel($channelName);
39 42
 
@@ -41,23 +44,27 @@  discard block
 block discarded – undo
41 44
      * @param int $price
42 45
      * @param ChannelInterface $channel
43 46
      * @param CurrencyInterface $currency
47
+     * @return void
44 48
      */
45 49
     public function specifyPriceForChannelAndCurrency($price, ChannelInterface $channel, CurrencyInterface $currency);
46 50
 
47 51
     /**
48 52
      * @param string $code
53
+     * @return void
49 54
      */
50 55
     public function specifyCode($code);
51 56
 
52 57
     /**
53 58
      * @param string $name
54 59
      * @param string $localeCode
60
+     * @return void
55 61
      */
56 62
     public function nameItIn($name, $localeCode);
57 63
 
58 64
     /**
59 65
      * @param string $slug
60 66
      * @param string $locale
67
+     * @return void
61 68
      */
62 69
     public function specifySlugIn($slug, $locale);
63 70
 
@@ -65,40 +72,47 @@  discard block
 block discarded – undo
65 72
      * @param string $attributeName
66 73
      * @param string $value
67 74
      * @param string $localeCode
75
+     * @return void
68 76
      */
69 77
     public function addAttribute($attributeName, $value, $localeCode);
70 78
 
71 79
     /**
72 80
      * @param string $attributeName
73 81
      * @param string $localeCode
82
+     * @return void
74 83
      */
75 84
     public function removeAttribute($attributeName, $localeCode);
76 85
 
77 86
     /**
78 87
      * @param string $path
79 88
      * @param string $code
89
+     * @return void
80 90
      */
81 91
     public function attachImage($path, $code = null);
82 92
 
83 93
     /**
84 94
      * @param ProductAssociationTypeInterface $productAssociationType
85 95
      * @param string[] $productsNames
96
+     * @return void
86 97
      */
87 98
     public function associateProducts(ProductAssociationTypeInterface $productAssociationType, array $productsNames);
88 99
 
89 100
     /**
90 101
      * @param string $productName
91 102
      * @param ProductAssociationTypeInterface $productAssociationType
103
+     * @return void
92 104
      */
93 105
     public function removeAssociatedProduct($productName, ProductAssociationTypeInterface $productAssociationType);
94 106
 
95 107
     /**
96 108
      * @param string $locale
109
+     * @return void
97 110
      */
98 111
     public function activateLanguageTab($locale);
99 112
 
100 113
     /**
101 114
      * @param string $shippingCategoryName
115
+     * @return void
102 116
      */
103 117
     public function selectShippingCategory($shippingCategoryName);
104 118
 }
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/Admin/Product/IndexPageInterface.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
      * @param string $taxonName
23
+     * @return void
23 24
      */
24 25
     public function filterByTaxon($taxonName);
25 26
 }
Please login to merge, or discard this patch.