Conditions | 1 |
Paths | 1 |
Total Lines | 8 |
Code Lines | 5 |
Lines | 8 |
Ratio | 100 % |
Tests | 5 |
CRAP Score | 1 |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
75 | 4 | View Code Duplication | private function findRulesetFiles() |
76 | { |
||
77 | 4 | $installedStandards = (new Finder())->files() |
|
78 | 4 | ->in($this->vendorDir) |
|
79 | 4 | ->name('ruleset.xml'); |
|
80 | |||
81 | 4 | return array_keys(iterator_to_array($installedStandards)); |
|
82 | } |
||
83 | |||
92 |