| Total Complexity | 1 | 
| Total Lines | 16 | 
| Duplicated Lines | 0 % | 
| Changes | 1 | ||
| Bugs | 0 | Features | 0 | 
| 1 | <?php  | 
            ||
| 10 | class InvalidFileException extends RuntimeException  | 
            ||
| 11 | { | 
            ||
| 12 | /**  | 
            ||
| 13 | * Exception thrown when a path is expected to be a file but is not a file.  | 
            ||
| 14 | *  | 
            ||
| 15 | * @param string $path The path being checked as a file.  | 
            ||
| 16 | * @param int $code The Exception code.  | 
            ||
| 17 | * @param \Throwable $previous The previous throwable used for the exception chaining.  | 
            ||
| 18 | */  | 
            ||
| 19 | public function __construct(string $path, int $code = 0, Throwable $previous = null)  | 
            ||
| 28 |