| Conditions | 2 |
| Paths | 1 |
| Total Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 19 | protected static function createFileSelection(array $sourceFiles): FileSelection |
||
| 20 | { |
||
| 21 | return FileSelection::create($sourceFiles['include']) |
||
| 22 | ->excludeFilesFrom($sourceFiles['exclude']) |
||
| 23 | ->shouldFollowLinks(isset($sourceFiles['follow_links']) && $sourceFiles['follow_links']); |
||
| 24 | } |
||
| 25 | |||
| 44 |