@@ -23,7 +23,7 @@ protected function createValidator()
23
23
return new ExpressionLanguageSyntaxValidator (new ExpressionLanguage ());
24
24
}
25
25
26
- public function testExpressionValid (): void
26
+ public function testExpressionValid ()
27
27
{
28
28
$ this ->validator ->validate ('1 + 1 ' , new ExpressionLanguageSyntax ([
29
29
'message ' => 'myMessage ' ,
@@ -33,7 +33,7 @@ public function testExpressionValid(): void
33
33
$ this ->assertNoViolation ();
34
34
}
35
35
36
- public function testExpressionWithoutNames (): void
36
+ public function testExpressionWithoutNames ()
37
37
{
38
38
$ this ->validator ->validate ('1 + 1 ' , new ExpressionLanguageSyntax ([
39
39
'message ' => 'myMessage ' ,
@@ -42,7 +42,7 @@ public function testExpressionWithoutNames(): void
42
42
$ this ->assertNoViolation ();
43
43
}
44
44
45
- public function testExpressionWithAllowedVariableName (): void
45
+ public function testExpressionWithAllowedVariableName ()
46
46
{
47
47
$ this ->validator ->validate ('a + 1 ' , new ExpressionLanguageSyntax ([
48
48
'message ' => 'myMessage ' ,
@@ -52,7 +52,7 @@ public function testExpressionWithAllowedVariableName(): void
52
52
$ this ->assertNoViolation ();
53
53
}
54
54
55
- public function testExpressionIsNotValid (): void
55
+ public function testExpressionIsNotValid ()
56
56
{
57
57
$ this ->validator ->validate ('a + 1 ' , new ExpressionLanguageSyntax ([
58
58
'message ' => 'myMessage ' ,
0 commit comments