| 1 | <?php declare(strict_types=1); | ||
| 13 | class NullCG extends AbstractCG | ||
| 14 | { | ||
| 15 | /** | ||
| 16 | * NullCG constructor. | ||
| 17 | */ | ||
| 18 | 17 | public function __construct() | |
| 22 | |||
| 23 | /** | ||
| 24 | * @inheritdoc | ||
| 25 | */ | ||
| 26 | public function getCommonPrefix(AbstractCG $group): string | ||
| 30 | |||
| 31 | /** | ||
| 32 | * @inheritdoc | ||
| 33 | */ | ||
| 34 | protected function compareLength(AbstractCG $group): int | ||
| 39 | } | ||
| 40 |