| Total Complexity | 3 |
| Total Lines | 21 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 11 | final class EnabledAvataxConfigurationProvider implements EnabledAvataxConfigurationProviderInterface |
||
| 12 | { |
||
| 13 | /** @var AvataxConfigurationRepositoryInterface */ |
||
| 14 | private $avataxConfigurationRepository; |
||
| 15 | |||
| 16 | public function __construct(AvataxConfigurationRepositoryInterface $avataxConfigurationRepository) |
||
| 17 | { |
||
| 18 | $this->avataxConfigurationRepository = $avataxConfigurationRepository; |
||
| 19 | } |
||
| 20 | |||
| 21 | /** |
||
| 22 | * {@inheritdoc} |
||
| 23 | */ |
||
| 24 | public function getConfiguration(): AvataxConfigurationInterface |
||
| 32 | } |
||
| 33 | } |
||
| 34 |