Skip to content

Commit

Permalink
Fixed exception message
Browse files Browse the repository at this point in the history
Added missing back tick to exception message.
  • Loading branch information
PHLAK authored and freekmurze committed Dec 5, 2022
1 parent a0ad435 commit a4ae0f3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Exceptions/FileDoesNotExistException.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@ class FileDoesNotExistException extends Exception
{
public function __construct($file)
{
parent::__construct("The file `{$file} does not exist");
parent::__construct("The file `{$file}` does not exist");
}
}

0 comments on commit a4ae0f3

Please sign in to comment.