File tree Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -24,10 +24,10 @@ class_exists(ParsedExpression::class);
24
24
*/
25
25
class ExpressionLanguage
26
26
{
27
- private CacheItemPoolInterface $ cache ;
28
- private Lexer $ lexer ;
29
- private Parser $ parser ;
30
- private Compiler $ compiler ;
27
+ private $ cache ;
28
+ private $ lexer ;
29
+ private $ parser ;
30
+ private $ compiler ;
31
31
32
32
protected array $ functions = [];
33
33
Original file line number Diff line number Diff line change 20
20
*/
21
21
class ParsedExpression extends Expression
22
22
{
23
- private Node $ nodes ;
23
+ private $ nodes ;
24
24
25
25
public function __construct (string $ expression , Node $ nodes )
26
26
{
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ class Parser
26
26
public const OPERATOR_LEFT = 1 ;
27
27
public const OPERATOR_RIGHT = 2 ;
28
28
29
- private TokenStream $ stream ;
29
+ private $ stream ;
30
30
private array $ unaryOperators ;
31
31
private array $ binaryOperators ;
32
32
private array $ functions ;
You can’t perform that action at this time.
0 commit comments