| Total Complexity | 3 |
| Total Lines | 20 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 13 | abstract class AConnector extends AIterator |
||
| 14 | { |
||
| 15 | /** @var IRow[] */ |
||
| 16 | protected array $translatedData = []; |
||
| 17 | |||
| 18 | 6 | protected function getIterableName(): string |
|
| 21 | } |
||
| 22 | |||
| 23 | abstract protected function parseData(): void; |
||
| 24 | |||
| 25 | /** |
||
| 26 | * Get row with data by preset key |
||
| 27 | * @param int|string $key |
||
| 28 | * @return IRow |
||
| 29 | */ |
||
| 30 | 1 | public function getByKey($key): ?IRow |
|
| 35 |