@@ -202,7 +202,7 @@ public function testEnvIsNotUnset()
202
202
$ this ->assertSame ($ expected , $ container ->resolveEnvPlaceholders ($ ext ->getConfig ()));
203
203
}
204
204
205
- public function testEmptyEnvWhichCannotBeEmptyForScalarNode (): void
205
+ public function testEmptyEnvWhichCannotBeEmptyForScalarNode ()
206
206
{
207
207
$ container = new ContainerBuilder ();
208
208
$ container ->registerExtension ($ ext = new EnvExtension ());
@@ -215,7 +215,7 @@ public function testEmptyEnvWhichCannotBeEmptyForScalarNode(): void
215
215
$ this ->assertSame ($ expected , $ container ->resolveEnvPlaceholders ($ ext ->getConfig ()));
216
216
}
217
217
218
- public function testEmptyEnvWhichCannotBeEmptyForScalarNodeWithValidation (): void
218
+ public function testEmptyEnvWhichCannotBeEmptyForScalarNodeWithValidation ()
219
219
{
220
220
$ this ->expectException ('Symfony\Component\Config\Definition\Exception\InvalidConfigurationException ' );
221
221
$ this ->expectExceptionMessage ('The path "env_extension.scalar_node_not_empty_validated" cannot contain an environment variable when empty values are not allowed by definition and are validated. ' );
@@ -229,7 +229,7 @@ public function testEmptyEnvWhichCannotBeEmptyForScalarNodeWithValidation(): voi
229
229
$ this ->doProcess ($ container );
230
230
}
231
231
232
- public function testPartialEnvWhichCannotBeEmptyForScalarNode (): void
232
+ public function testPartialEnvWhichCannotBeEmptyForScalarNode ()
233
233
{
234
234
$ container = new ContainerBuilder ();
235
235
$ container ->registerExtension ($ ext = new EnvExtension ());
@@ -242,7 +242,7 @@ public function testPartialEnvWhichCannotBeEmptyForScalarNode(): void
242
242
$ this ->assertSame ($ expected , $ container ->resolveEnvPlaceholders ($ ext ->getConfig ()));
243
243
}
244
244
245
- public function testEnvWithVariableNode (): void
245
+ public function testEnvWithVariableNode ()
246
246
{
247
247
$ container = new ContainerBuilder ();
248
248
$ container ->registerExtension ($ ext = new EnvExtension ());
@@ -266,7 +266,7 @@ public function testEmptyConfigFromMoreThanOneSource()
266
266
$ this ->addToAssertionCount (1 );
267
267
}
268
268
269
- public function testDiscardedEnvInConfig (): void
269
+ public function testDiscardedEnvInConfig ()
270
270
{
271
271
$ container = new ContainerBuilder ();
272
272
$ container ->setParameter ('env(BOOLISH) ' , '1 ' );
0 commit comments