Skip to content

Commit a7da7f5

Browse files
committed
Remove FQCN type hints on properties
1 parent 9c26b53 commit a7da7f5

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

ExpressionLanguage.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,10 @@ class_exists(ParsedExpression::class);
2424
*/
2525
class ExpressionLanguage
2626
{
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;
3131

3232
protected array $functions = [];
3333

ParsedExpression.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
*/
2121
class ParsedExpression extends Expression
2222
{
23-
private Node $nodes;
23+
private $nodes;
2424

2525
public function __construct(string $expression, Node $nodes)
2626
{

Parser.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ class Parser
2626
public const OPERATOR_LEFT = 1;
2727
public const OPERATOR_RIGHT = 2;
2828

29-
private TokenStream $stream;
29+
private $stream;
3030
private array $unaryOperators;
3131
private array $binaryOperators;
3232
private array $functions;

0 commit comments

Comments
 (0)