diff options
Diffstat (limited to 'lib/Minz/FileNotExistException.php')
| -rw-r--r-- | lib/Minz/FileNotExistException.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Minz/FileNotExistException.php b/lib/Minz/FileNotExistException.php index 24cb1997a..c616a6f89 100644 --- a/lib/Minz/FileNotExistException.php +++ b/lib/Minz/FileNotExistException.php @@ -3,8 +3,8 @@ declare(strict_types=1); class Minz_FileNotExistException extends Minz_Exception { public function __construct(string $file_name, int $code = self::ERROR) { - $message = 'File not found: `' . $file_name.'`'; + $message = 'File not found: `' . $file_name . '`'; - parent::__construct ($message, $code); + parent::__construct($message, $code); } } |
