We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 179dd51 commit 52f051cCopy full SHA for 52f051c
src/product/BillingRegistry.php
@@ -16,11 +16,11 @@
16
17
class BillingRegistry implements BillingRegistryInterface
18
{
19
- /** @var TariffTypeDefinition[] */
+ /** @var TariffTypeDefinitionInterface[] */
20
private array $tariffTypes = [];
21
private bool $locked = false;
22
23
- public function addTariffType(TariffTypeDefinition $tariffType): void
+ public function addTariffType(TariffTypeDefinitionInterface $tariffType): void
24
25
if ($this->locked) {
26
throw new \RuntimeException("BillingRegistry is locked and cannot be modified.");
0 commit comments