Skip to content

Commit

Permalink
PathException fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
Smoren committed Jun 15, 2023
1 parent 99181b2 commit 10f6bc6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Exceptions/PathException.php
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,6 @@ public function getPath(): array
*/
public function getPathString(): string
{
return implode($this->pathDelimiter, $this->path);
return implode($this->pathDelimiter, $this->getPath());
}
}

0 comments on commit 10f6bc6

Please sign in to comment.