| Total Complexity | 3 |
| Total Lines | 22 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 5 | abstract class AbstractWordList extends Base |
||
| 6 | { |
||
| 7 | protected $data = array(); |
||
| 8 | |||
| 9 | /** |
||
| 10 | * @param string $context |
||
| 11 | * @return string |
||
| 12 | */ |
||
| 13 | abstract protected function getFileName($context = ''); |
||
| 14 | |||
| 15 | protected function loadData($context = '') |
||
| 19 | } |
||
| 20 | } |
||
| 21 | |||
| 22 | protected function getLine($context = '') |
||
| 29 |