@@ -14,42 +14,42 @@ |
||
14 | 14 | public function fileProvider() |
15 | 15 | { |
16 | 16 | return [ |
17 | - [new File(dirname(__FILE__) . "/../Fixtures/file-test1.txt")] |
|
17 | + [ new File(dirname(__FILE__) . "/../Fixtures/file-test1.txt") ] |
|
18 | 18 | ]; |
19 | 19 | } |
20 | 20 | |
21 | 21 | public function directoryProvider() |
22 | 22 | { |
23 | 23 | return [ |
24 | - [new File(dirname(__FILE__) . "/../Fixtures/file-test/")] |
|
24 | + [ new File(dirname(__FILE__) . "/../Fixtures/file-test/") ] |
|
25 | 25 | ]; |
26 | 26 | } |
27 | 27 | |
28 | 28 | public function fileLinkProvider() |
29 | 29 | { |
30 | 30 | return [ |
31 | - [new File(dirname(__FILE__) . "/../Fixtures/file-test1.txt"), "/tmp/file-test-link"] |
|
31 | + [ new File(dirname(__FILE__) . "/../Fixtures/file-test1.txt"), "/tmp/file-test-link" ] |
|
32 | 32 | ]; |
33 | 33 | } |
34 | 34 | |
35 | 35 | public function tmpFileProvider() |
36 | 36 | { |
37 | 37 | return [ |
38 | - [new File("/tmp/file-test-tmp.txt")] |
|
38 | + [ new File("/tmp/file-test-tmp.txt") ] |
|
39 | 39 | ]; |
40 | 40 | } |
41 | 41 | |
42 | 42 | public function tmpDirectoryProvider() |
43 | 43 | { |
44 | 44 | return [ |
45 | - [new File("/tmp/file-test-tmp/")] |
|
45 | + [ new File("/tmp/file-test-tmp/") ] |
|
46 | 46 | ]; |
47 | 47 | } |
48 | 48 | |
49 | 49 | public function renameFailureProvider() |
50 | 50 | { |
51 | 51 | return [ |
52 | - [new File(dirname(__FILE__) . "/../Fixtures/file-test/file-test2.txt")] |
|
52 | + [ new File(dirname(__FILE__) . "/../Fixtures/file-test/file-test2.txt") ] |
|
53 | 53 | ]; |
54 | 54 | } |
55 | 55 | } |