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