Total Complexity | 1 |
Total Lines | 17 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
19 | class InvalidCompilePath extends AFaultManagerException |
||
20 | { |
||
21 | /** @var int */ |
||
22 | protected $code = 66004; |
||
23 | |||
24 | /** @var string */ |
||
25 | protected $message = 'Path "%s" does not exist or is not writable.'; |
||
26 | |||
27 | /** |
||
28 | * InvalidCompilePath constructor. |
||
29 | * @param string $path |
||
30 | */ |
||
31 | public function __construct(string $path) |
||
38 |