1 | <?php |
||
8 | class LogFilesDontExist implements Check |
||
9 | { |
||
10 | /** @var Collection */ |
||
11 | protected $ignoreFiles; |
||
12 | |||
13 | /** @var Collection */ |
||
14 | protected $logFiles; |
||
15 | |||
16 | /** |
||
17 | * The name of the check. |
||
18 | * |
||
19 | * @param array $config |
||
20 | * @return string |
||
21 | */ |
||
22 | public function name(array $config): string |
||
26 | |||
27 | /** |
||
28 | * Perform the actual verification of this check. |
||
29 | * |
||
30 | * @param array $config |
||
31 | * @return bool |
||
32 | */ |
||
33 | public function check(array $config): bool |
||
46 | |||
47 | /** |
||
48 | * The error message to display in case the check does not pass. |
||
49 | * |
||
50 | * @param array $config |
||
51 | * @return string |
||
52 | */ |
||
53 | public function message(array $config): string |
||
59 | } |
||
60 |