1 | <?php |
||
14 | final class StandardFinder |
||
15 | { |
||
16 | /** |
||
17 | * @var string[] |
||
18 | */ |
||
19 | private $rulesets = []; |
||
20 | |||
21 | /** |
||
22 | * @param string[] $names |
||
23 | * @return string[] |
||
24 | */ |
||
25 | 6 | public function getRulesetPathsForStandardNames(array $names) : array |
|
34 | |||
35 | 9 | public function getRulesetPathForStandardName(string $standardName) : string |
|
36 | { |
||
37 | 9 | if (isset($this->getStandards()[$standardName])) { |
|
38 | 8 | return $this->getStandards()[$standardName]; |
|
39 | } |
||
40 | |||
41 | 1 | throw new StandardNotFoundException( |
|
42 | sprintf( |
||
43 | 1 | 'Standard "%s" was not found. Found standards are: %s.', |
|
44 | $standardName, |
||
45 | 1 | implode($this->getRulesetNames(), ', ') |
|
46 | ) |
||
47 | ); |
||
48 | } |
||
49 | |||
50 | /** |
||
51 | * @return string[] |
||
52 | */ |
||
53 | 13 | public function getStandards() : array |
|
68 | |||
69 | /** |
||
70 | * @return string[] |
||
71 | */ |
||
72 | 13 | private function findRulesetFiles() : array |
|
80 | |||
81 | 1 | private function getRulesetNames() : array |
|
85 | } |
||
86 |
This check marks implicit conversions of arrays to boolean values in a comparison. While in PHP an empty array is considered to be equal (but not identical) to false, this is not always apparent.
Consider making the comparison explicit by using
empty(..)
or! empty(...)
instead.