@@ -20,8 +20,10 @@ final class CSSBlockListTest extends TestCase
20
20
{
21
21
/**
22
22
* @test
23
+ *
24
+ * @return void
23
25
*/
24
- public function getAllValuesWhenNoContentSetReturnsEmptyArray (): void
26
+ public function getAllValuesWhenNoContentSetReturnsEmptyArray ()
25
27
{
26
28
$ subject = new ConcreteCSSBlockList ();
27
29
@@ -30,8 +32,10 @@ public function getAllValuesWhenNoContentSetReturnsEmptyArray(): void
30
32
31
33
/**
32
34
* @test
35
+ *
36
+ * @return void
33
37
*/
34
- public function getAllValuesReturnsOneValueDirectlySetAsContent (): void
38
+ public function getAllValuesReturnsOneValueDirectlySetAsContent ()
35
39
{
36
40
$ subject = new ConcreteCSSBlockList ();
37
41
@@ -50,8 +54,10 @@ public function getAllValuesReturnsOneValueDirectlySetAsContent(): void
50
54
51
55
/**
52
56
* @test
57
+ *
58
+ * @return void
53
59
*/
54
- public function getAllValuesReturnsMultipleValuesDirectlySetAsContentInOneDeclarationBlock (): void
60
+ public function getAllValuesReturnsMultipleValuesDirectlySetAsContentInOneDeclarationBlock ()
55
61
{
56
62
$ subject = new ConcreteCSSBlockList ();
57
63
@@ -74,8 +80,10 @@ public function getAllValuesReturnsMultipleValuesDirectlySetAsContentInOneDeclar
74
80
75
81
/**
76
82
* @test
83
+ *
84
+ * @return void
77
85
*/
78
- public function getAllValuesReturnsMultipleValuesDirectlySetAsContentInMultipleDeclarationBlocks (): void
86
+ public function getAllValuesReturnsMultipleValuesDirectlySetAsContentInMultipleDeclarationBlocks ()
79
87
{
80
88
$ subject = new ConcreteCSSBlockList ();
81
89
@@ -99,8 +107,10 @@ public function getAllValuesReturnsMultipleValuesDirectlySetAsContentInMultipleD
99
107
100
108
/**
101
109
* @test
110
+ *
111
+ * @return void
102
112
*/
103
- public function getAllValuesReturnsValuesWithinAtRuleBlockList (): void
113
+ public function getAllValuesReturnsValuesWithinAtRuleBlockList ()
104
114
{
105
115
$ subject = new ConcreteCSSBlockList ();
106
116
@@ -121,8 +131,10 @@ public function getAllValuesReturnsValuesWithinAtRuleBlockList(): void
121
131
122
132
/**
123
133
* @test
134
+ *
135
+ * @return void
124
136
*/
125
- public function getAllValuesWithElementProvidedReturnsOnlyValuesWithinThatElement (): void
137
+ public function getAllValuesWithElementProvidedReturnsOnlyValuesWithinThatElement ()
126
138
{
127
139
$ subject = new ConcreteCSSBlockList ();
128
140
@@ -146,8 +158,10 @@ public function getAllValuesWithElementProvidedReturnsOnlyValuesWithinThatElemen
146
158
147
159
/**
148
160
* @test
161
+ *
162
+ * @return void
149
163
*/
150
- public function getAllValuesWithSearchStringProvidedReturnsOnlyValuesFromMatchingRules (): void
164
+ public function getAllValuesWithSearchStringProvidedReturnsOnlyValuesFromMatchingRules ()
151
165
{
152
166
$ subject = new ConcreteCSSBlockList ();
153
167
@@ -170,8 +184,10 @@ public function getAllValuesWithSearchStringProvidedReturnsOnlyValuesFromMatchin
170
184
171
185
/**
172
186
* @test
187
+ *
188
+ * @return void
173
189
*/
174
- public function getAllValuesByDefaultDoesNotReturnValuesInFunctionArguments (): void
190
+ public function getAllValuesByDefaultDoesNotReturnValuesInFunctionArguments ()
175
191
{
176
192
$ subject = new ConcreteCSSBlockList ();
177
193
@@ -191,8 +207,10 @@ public function getAllValuesByDefaultDoesNotReturnValuesInFunctionArguments(): v
191
207
192
208
/**
193
209
* @test
210
+ *
211
+ * @return void
194
212
*/
195
- public function getAllValuesWithSearchInFunctionArgumentsReturnsValuesInFunctionArguments (): void
213
+ public function getAllValuesWithSearchInFunctionArgumentsReturnsValuesInFunctionArguments ()
196
214
{
197
215
$ subject = new ConcreteCSSBlockList ();
198
216
0 commit comments