| Conditions | 3 |
| Paths | 3 |
| Total Lines | 16 |
| Code Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 1 | Features | 0 |
| 1 | <?php |
||
| 10 | protected function fileAction($fileName, $pathToFile) |
||
| 11 | { |
||
| 12 | $parentAction = parent::fileAction($fileName, $pathToFile); |
||
| 13 | |||
| 14 | if ($parentAction !== null) { |
||
| 15 | return $parentAction; |
||
| 16 | } |
||
| 17 | |||
| 18 | if ($fileName === 'bfwModulesInfos.json') { |
||
| 19 | $this->list[] = $pathToFile; |
||
| 20 | |||
| 21 | return 'break'; |
||
| 22 | } |
||
| 23 | |||
| 24 | return ''; |
||
| 25 | } |
||
| 26 | } |
||
| 27 |