| Total Complexity | 3 |
| Total Lines | 29 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 7 | class CacheFileException extends BaseException |
||
| 8 | { |
||
| 9 | |||
| 10 | /** @param string $before */ |
||
| 11 | private static string $before = "<File Cache Store Exception>"; |
||
| 12 | |||
| 13 | /** |
||
| 14 | * @return void |
||
| 15 | */ |
||
| 16 | public static function create(string $message = "", int $code = 0, ?Exception $previous = null, array $details = []) |
||
| 19 | } |
||
| 20 | |||
| 21 | |||
| 22 | /** |
||
| 23 | * @return string |
||
| 24 | */ |
||
| 25 | public static function getBefore() |
||
| 26 | { |
||
| 27 | return self::$before; |
||
| 28 | } |
||
| 29 | |||
| 30 | /** |
||
| 31 | * @return void |
||
| 32 | */ |
||
| 33 | public static function setBefore(string $text) |
||
| 36 | } |
||
| 37 | |||
| 40 |