| Total Complexity | 2 |
| Total Lines | 24 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 11 | abstract class Base implements Comparator |
||
| 12 | { |
||
| 13 | use Paths; |
||
| 14 | |||
| 15 | protected $keys = []; |
||
| 16 | |||
| 17 | protected $translations = []; |
||
| 18 | |||
| 19 | protected $force; |
||
| 20 | |||
| 21 | public function __construct(array $keys, array $translations, bool $force) |
||
| 28 | } |
||
| 29 | |||
| 30 | protected function load(string $filename): array |
||
| 37 |