From 969eb8f9b8c8bee5932fe58d003a0f924d6111c5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gabriel=20Ostroluck=C3=BD?= Date: Tue, 8 Oct 2024 14:53:21 +0200 Subject: [PATCH] Make attributes in Path public Fixes #12 --- src/Ast/Path.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Ast/Path.php b/src/Ast/Path.php index d897c00..048192f 100644 --- a/src/Ast/Path.php +++ b/src/Ast/Path.php @@ -14,10 +14,10 @@ class Path extends Node { /** @var AttributePath */ - private $attributePath; + public $attributePath; /** @var ValuePath */ - private $valuePath; + public $valuePath; /** * @param AttributePath $attributePath