1 | <?php |
||
7 | class XDebugIsNotEnabled implements Check |
||
8 | { |
||
9 | /** |
||
10 | * The name of the check. |
||
11 | * |
||
12 | * @return string |
||
13 | */ |
||
14 | public function name(array $config): string |
||
18 | |||
19 | /** |
||
20 | * Perform the actual verification of this check. |
||
21 | * |
||
22 | * @return bool |
||
23 | */ |
||
24 | public function check(array $config): bool |
||
28 | |||
29 | /** |
||
30 | * The error message to display in case the check does not pass. |
||
31 | * |
||
32 | * @return string |
||
33 | */ |
||
34 | public function message(array $config): string |
||
38 | } |
||
39 |