Skip to content

Commit

Permalink
Make attributes in Path public
Browse files Browse the repository at this point in the history
Fixes tmilos#12
  • Loading branch information
ostrolucky authored Oct 8, 2024
1 parent 67efd2e commit 969eb8f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Ast/Path.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@
class Path extends Node
{
/** @var AttributePath */
private $attributePath;
public $attributePath;

/** @var ValuePath */
private $valuePath;
public $valuePath;

/**
* @param AttributePath $attributePath
Expand Down

0 comments on commit 969eb8f

Please sign in to comment.