Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | n/a |
0 / 0 |
n/a |
0 / 0 |
CRAP | n/a |
0 / 0 |
1 | <?php |
2 | |
3 | namespace HtaccessCapabilityTester; |
4 | |
5 | interface TestFilesLineUpperInterface |
6 | { |
7 | /** |
8 | * Line-up test files. |
9 | * |
10 | * This method should make sure that the files passed in are there and are up-to-date. |
11 | * - If a file is missing, it should be created. |
12 | * - If a file has changed content, it should be updated |
13 | * - If the directory contains a file/dir that should not be there, it should be removed |
14 | * |
15 | * @param array $files The files that needs to be there |
16 | * |
17 | * @return void |
18 | */ |
19 | public function lineUp($files); |
20 | } |