Conditions | 1 |
Paths | 1 |
Total Lines | 8 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
12 | protected function inputEntries(): array |
||
13 | { |
||
14 | return [ |
||
15 | (new Entries\Entry())->setEntry(Entries\Entry::SOURCE_EXTERNAL, 'foo', 'fhdfh'), |
||
16 | (new Entries\Entry())->setEntry(Entries\Entry::SOURCE_EXTERNAL, 'bar', 'hjyxn'), |
||
17 | (new Entries\Entry())->setEntry(Entries\Entry::SOURCE_EXTERNAL, 'baz', (new Entries\Entry())->setEntry(Entries\Entry::SOURCE_RAW, 'baz', 'gnbgy')), |
||
18 | (new Entries\Entry())->setEntry(Entries\Entry::SOURCE_ENV, 'foo', 'mjgdf'), |
||
19 | (new Entries\Entry())->setEntry(Entries\Entry::SOURCE_ENV, 'bar', 'shshh'), |
||
20 | ]; |
||
23 |