Conditions | 3 |
Paths | 3 |
Total Lines | 14 |
Code Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
36 | public function __construct($file_path) |
||
37 | { |
||
38 | if (! is_string($file_path)) { |
||
39 | throw new InvalidDataTypeException( |
||
40 | '$file_path', |
||
41 | $file_path, |
||
42 | 'string' |
||
43 | ); |
||
44 | } |
||
45 | if (! is_readable($file_path)) { |
||
46 | throw new InvalidFilePathException($file_path); |
||
47 | } |
||
48 | $this->file_path = $file_path; |
||
49 | } |
||
50 | |||
62 |