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