Skip to content

Commit

Permalink
Fix deprecation warning on PHP 8.2 - ${path} (#182)
Browse files Browse the repository at this point in the history
Co-authored-by: Kevin Oosterveen <[email protected]>
  • Loading branch information
koost89 and Kevin Oosterveen authored Jun 19, 2023
1 parent ec4da2c commit 69cecb4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ protected function getMessages($noSort)
$path = $this->sourcePath;

if (!$this->file->exists($path)) {
throw new \Exception("${path} doesn't exists!");
throw new \Exception("{$path} doesn't exists!");
}

foreach ($this->file->allFiles($path) as $file) {
Expand Down

0 comments on commit 69cecb4

Please sign in to comment.