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