Completed
Push — snake-case-tests ( 55729f )
by Kamil
87:29 queued 51:35
created
src/Sylius/Component/Addressing/Model/AddressInterface.php 1 patch
Doc Comments   +10 added lines patch added patch discarded remove patch
@@ -26,6 +26,7 @@  discard block
 block discarded – undo
26 26
 
27 27
     /**
28 28
      * @param string $firstName
29
+     * @return void
29 30
      */
30 31
     public function setFirstName($firstName);
31 32
 
@@ -36,6 +37,7 @@  discard block
 block discarded – undo
36 37
 
37 38
     /**
38 39
      * @param string $lastName
40
+     * @return void
39 41
      */
40 42
     public function setLastName($lastName);
41 43
 
@@ -51,6 +53,7 @@  discard block
 block discarded – undo
51 53
 
52 54
     /**
53 55
      * @param string $phoneNumber
56
+     * @return void
54 57
      */
55 58
     public function setPhoneNumber($phoneNumber);
56 59
 
@@ -61,6 +64,7 @@  discard block
 block discarded – undo
61 64
 
62 65
     /**
63 66
      * @param string $company
67
+     * @return void
64 68
      */
65 69
     public function setCompany($company);
66 70
 
@@ -71,6 +75,7 @@  discard block
 block discarded – undo
71 75
 
72 76
     /**
73 77
      * @param string $countryCode
78
+     * @return void
74 79
      */
75 80
     public function setCountryCode($countryCode = null);
76 81
 
@@ -81,6 +86,7 @@  discard block
 block discarded – undo
81 86
 
82 87
     /**
83 88
      * @param string $provinceCode
89
+     * @return void
84 90
      */
85 91
     public function setProvinceCode($provinceCode = null);
86 92
 
@@ -91,6 +97,7 @@  discard block
 block discarded – undo
91 97
 
92 98
     /**
93 99
      * @param string $provinceName
100
+     * @return void
94 101
      */
95 102
     public function setProvinceName($provinceName = null);
96 103
 
@@ -101,6 +108,7 @@  discard block
 block discarded – undo
101 108
 
102 109
     /**
103 110
      * @param string $street
111
+     * @return void
104 112
      */
105 113
     public function setStreet($street);
106 114
 
@@ -111,6 +119,7 @@  discard block
 block discarded – undo
111 119
 
112 120
     /**
113 121
      * @param string $city
122
+     * @return void
114 123
      */
115 124
     public function setCity($city);
116 125
 
@@ -121,6 +130,7 @@  discard block
 block discarded – undo
121 130
 
122 131
     /**
123 132
      * @param string $postcode
133
+     * @return void
124 134
      */
125 135
     public function setPostcode($postcode);
126 136
 }
Please login to merge, or discard this patch.
src/Sylius/Component/Addressing/Model/CountryInterface.php 1 patch
Doc Comments   +2 added lines patch added patch discarded remove patch
@@ -42,11 +42,13 @@
 block discarded – undo
42 42
 
43 43
     /**
44 44
      * @param ProvinceInterface $province
45
+     * @return void
45 46
      */
46 47
     public function addProvince(ProvinceInterface $province);
47 48
 
48 49
     /**
49 50
      * @param ProvinceInterface $province
51
+     * @return void
50 52
      */
51 53
     public function removeProvince(ProvinceInterface $province);
52 54
 
Please login to merge, or discard this patch.
src/Sylius/Component/Addressing/Model/ZoneInterface.php 1 patch
Doc Comments   +5 added lines patch added patch discarded remove patch
@@ -37,6 +37,7 @@  discard block
 block discarded – undo
37 37
 
38 38
     /**
39 39
      * @param string $name
40
+     * @return void
40 41
      */
41 42
     public function setName($name);
42 43
 
@@ -47,6 +48,7 @@  discard block
 block discarded – undo
47 48
 
48 49
     /**
49 50
      * @param string $type
51
+     * @return void
50 52
      */
51 53
     public function setType($type);
52 54
 
@@ -57,6 +59,7 @@  discard block
 block discarded – undo
57 59
 
58 60
     /**
59 61
      * @param string $scope
62
+     * @return void
60 63
      */
61 64
     public function setScope($scope);
62 65
 
@@ -72,11 +75,13 @@  discard block
 block discarded – undo
72 75
 
73 76
     /**
74 77
      * @param ZoneMemberInterface $member
78
+     * @return void
75 79
      */
76 80
     public function addMember(ZoneMemberInterface $member);
77 81
 
78 82
     /**
79 83
      * @param ZoneMemberInterface $member
84
+     * @return void
80 85
      */
81 86
     public function removeMember(ZoneMemberInterface $member);
82 87
 
Please login to merge, or discard this patch.
src/Sylius/Component/Attribute/Model/AttributeInterface.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -33,6 +33,7 @@  discard block
 block discarded – undo
33 33
 
34 34
     /**
35 35
      * @param string $type
36
+     * @return void
36 37
      */
37 38
     public function setType($type);
38 39
 
@@ -43,6 +44,7 @@  discard block
 block discarded – undo
43 44
 
44 45
     /**
45 46
      * @param array $configuration
47
+     * @return void
46 48
      */
47 49
     public function setConfiguration(array $configuration);
48 50
 
@@ -58,6 +60,7 @@  discard block
 block discarded – undo
58 60
 
59 61
     /**
60 62
      * @param string $storageType
63
+     * @return void
61 64
      */
62 65
     public function setStorageType($storageType);
63 66
 
@@ -68,6 +71,7 @@  discard block
 block discarded – undo
68 71
 
69 72
     /**
70 73
      * @param int $position
74
+     * @return void
71 75
      */
72 76
     public function setPosition($position);
73 77
 }
Please login to merge, or discard this patch.
src/Sylius/Component/Attribute/Model/AttributeSubjectInterface.php 1 patch
Doc Comments   +2 added lines patch added patch discarded remove patch
@@ -33,11 +33,13 @@
 block discarded – undo
33 33
 
34 34
     /**
35 35
      * @param AttributeValueInterface $attribute
36
+     * @return void
36 37
      */
37 38
     public function addAttribute(AttributeValueInterface $attribute);
38 39
 
39 40
     /**
40 41
      * @param AttributeValueInterface $attribute
42
+     * @return void
41 43
      */
42 44
     public function removeAttribute(AttributeValueInterface $attribute);
43 45
 
Please login to merge, or discard this patch.
src/Sylius/Component/Attribute/Model/AttributeTranslationInterface.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -28,6 +28,7 @@
 block discarded – undo
28 28
 
29 29
     /**
30 30
      * @param string $name
31
+     * @return void
31 32
      */
32 33
     public function setName($name);
33 34
 }
Please login to merge, or discard this patch.
src/Sylius/Component/Attribute/Model/AttributeValueInterface.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -33,6 +33,7 @@  discard block
 block discarded – undo
33 33
 
34 34
     /**
35 35
      * @param AttributeSubjectInterface|null $subject
36
+     * @return void
36 37
      */
37 38
     public function setSubject(AttributeSubjectInterface $subject = null);
38 39
 
@@ -43,6 +44,7 @@  discard block
 block discarded – undo
43 44
 
44 45
     /**
45 46
      * @param AttributeInterface $attribute
47
+     * @return void
46 48
      */
47 49
     public function setAttribute(AttributeInterface $attribute);
48 50
 
@@ -53,6 +55,7 @@  discard block
 block discarded – undo
53 55
 
54 56
     /**
55 57
      * @param mixed $value
58
+     * @return void
56 59
      */
57 60
     public function setValue($value);
58 61
 
@@ -80,6 +83,7 @@  discard block
 block discarded – undo
80 83
 
81 84
     /**
82 85
      * @param string
86
+     * @return void
83 87
      */
84 88
     public function setLocaleCode($localeCode);
85 89
 }
Please login to merge, or discard this patch.
src/Sylius/Component/Channel/Model/ChannelsAwareInterface.php 1 patch
Doc Comments   +2 added lines patch added patch discarded remove patch
@@ -32,11 +32,13 @@
 block discarded – undo
32 32
 
33 33
     /**
34 34
      * @param ChannelInterface $channel
35
+     * @return void
35 36
      */
36 37
     public function addChannel(ChannelInterface $channel);
37 38
 
38 39
     /**
39 40
      * @param ChannelInterface $channel
41
+     * @return void
40 42
      */
41 43
     public function removeChannel(ChannelInterface $channel);
42 44
 }
Please login to merge, or discard this patch.
src/Sylius/Component/Core/Currency/CurrencyStorageInterface.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -22,6 +22,7 @@
 block discarded – undo
22 22
     /**
23 23
      * @param ChannelInterface $channel
24 24
      * @param string $currencyCode
25
+     * @return void
25 26
      */
26 27
     public function set(ChannelInterface $channel, $currencyCode);
27 28
 
Please login to merge, or discard this patch.