| Total Complexity | 4 |
| Total Lines | 23 |
| Duplicated Lines | 0 % |
| Coverage | 50% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 10 | final class WrappedStoreCommand extends WrappedCommand implements StoreCommandInterface |
||
| 11 | { |
||
| 12 | /** @var StoreCommandInterface */ |
||
| 13 | protected CommandInterface $command; |
||
| 14 | |||
| 15 | 152 | public static function wrapStoreCommand(StoreCommandInterface $command): self |
|
| 16 | { |
||
| 17 | 152 | return new self($command); |
|
| 18 | } |
||
| 19 | |||
| 20 | public function registerAppendix(string $key, mixed $value): void |
||
| 23 | } |
||
| 24 | |||
| 25 | public function registerColumn(string $key, mixed $value): void |
||
| 28 | } |
||
| 29 | |||
| 30 | 168 | public function hasData(): bool |
|
| 35 |