1 | <?php |
||
29 | class Module extends AbstractCheck |
||
30 | { |
||
31 | |||
32 | /** |
||
33 | * Check for module files that exist in a url |
||
34 | * |
||
35 | * @return array |
||
36 | */ |
||
37 | public function checkForModules() |
||
53 | |||
54 | /** |
||
55 | * Check for a module file that exist in a url |
||
56 | * |
||
57 | * @param string $file |
||
58 | * |
||
59 | * @return boolean |
||
60 | */ |
||
61 | public function checkForModule($file) |
||
66 | |||
67 | /** |
||
68 | * Get modules files as array |
||
69 | * |
||
70 | * @return array |
||
71 | */ |
||
72 | public function getFiles() |
||
77 | } |
||
78 |