8000 [ExpressionLanguage] set property isNullSafe as readonly in ConstantNode · symfony/symfony@2363842 · GitHub
[go: up one dir, main page]

Skip to content

Commit 2363842

Browse files
committed
[ExpressionLanguage] set property isNullSafe as readonly in ConstantNode
1 parent 2b6a600 commit 2363842

1 file changed

+1
-1
lines changed

src/Symfony/Component/ExpressionLanguage/Node/ConstantNode.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
*/
2121
class ConstantNode extends Node
2222
{
23-
public bool $isNullSafe;
23+
public readonly bool $isNullSafe;
2424
private bool $isIdentifier;
2525

2626
public function __construct(mixed $value, bool $isIdentifier = false, bool $isNullSafe = false)

0 commit comments

Comments
 (0)
0