Conditions | 5 |
Paths | 3 |
Total Lines | 15 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 30 |
Changes | 0 |
1 | <?php |
||
61 | public function isValid(FileTool $tool) { |
||
62 | |||
63 | $toolName = $tool->getName(); |
||
64 | |||
65 | if (null !== $this->exclude and in_array($toolName, $this->exclude)) { |
||
66 | return false; |
||
67 | } |
||
68 | |||
69 | if (null !== $this->include and !in_array($toolName, $this->include)) { |
||
70 | return false; |
||
71 | } |
||
72 | |||
73 | |||
74 | return true; |
||
75 | } |
||
76 | |||
77 | } |