| Total Complexity | 4 |
| Total Lines | 21 |
| Duplicated Lines | 0 % |
| Coverage | 0% |
| Changes | 2 | ||
| Bugs | 1 | Features | 0 |
| 1 | <?php |
||
| 10 | final class SchemaManager implements SchemaProviderInterface |
||
| 11 | { |
||
| 12 | private SchemaProviderInterface $provider; |
||
| 13 | |||
| 14 | public function __construct(SchemaProviderInterface $provider) |
||
| 17 | } |
||
| 18 | |||
| 19 | public function read(?SchemaProviderInterface $nextProvider = null): ?array |
||
| 20 | { |
||
| 21 | return $this->provider->read(); |
||
| 22 | } |
||
| 23 | |||
| 24 | public function clear(): bool |
||
| 25 | { |
||
| 26 | return $this->provider->clear(); |
||
| 27 | } |
||
| 28 | public function withConfig(array $config): SchemaProviderInterface |
||
| 31 | } |
||
| 32 | } |
||
| 33 |