Conditions | 1 |
Paths | 1 |
Total Lines | 42 |
Code Lines | 39 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
23 | public function fileContentsProvider(): array |
||
24 | { |
||
25 | $body1 = <<<'BODY' |
||
26 | <?php |
||
27 | namespace Foo\Bar\Dummy\Controller; |
||
28 | class AddAction {} |
||
29 | BODY; |
||
30 | $body2 = <<<'BODY' |
||
31 | <?php |
||
32 | namespace Foo\Bar\Dummy; |
||
33 | class ConfigProvider {} |
||
34 | BODY; |
||
35 | $body3 = <<<'BODY' |
||
36 | <?php |
||
37 | namespace Foo\Bar\Baz; |
||
38 | class Dummy {} |
||
39 | BODY; |
||
40 | $body4 = <<<'BODY' |
||
41 | <?php |
||
42 | class DummyCest {} |
||
43 | BODY; |
||
44 | $body5 = <<<'BODY' |
||
45 | <?php |
||
46 | class GetDummiesCest {} |
||
47 | BODY; |
||
48 | $body6 = <<<'BODY' |
||
49 | <?php |
||
50 | class AwesomeDummiesCest {} |
||
51 | BODY; |
||
52 | $body7 = <<<'BODY' |
||
53 | <?php |
||
54 | class GetBusesCest {} |
||
55 | BODY; |
||
56 | |||
57 | return [ |
||
58 | [$body1, 'src/Dummy/Controller/AddAction.php'], |
||
59 | [$body2, 'src/Dummy/ConfigProvider.php'], |
||
60 | [$body3, 'src/Baz/Dummy.php'], |
||
61 | [$body4, 'tests/api/dummy/DummyCest.php'], |
||
62 | [$body5, 'tests/api/dummy/GetDummiesCest.php'], |
||
63 | [$body6, 'tests/api/awesomedummy/AwesomeDummiesCest.php'], |
||
64 | [$body7, 'tests/api/bus/GetBusesCest.php'], |
||
65 | ]; |
||
68 |