refactor: consent checks are performed in AbstractProvider and not in child classes

This commit is contained in:
Maël Gangloff
2024-11-01 00:46:25 +01:00
parent 5be90247f4
commit c7a50eed65
29 changed files with 927 additions and 888 deletions

View File

@@ -17,7 +17,7 @@ class DomainOrderErrorNotification extends DomainWatchdogNotification
{
public function __construct(
private readonly Address $sender,
private readonly Domain $domain
private readonly Domain $domain,
) {
parent::__construct();
}

View File

@@ -19,7 +19,7 @@ class DomainOrderNotification extends DomainWatchdogNotification
public function __construct(
private readonly Address $sender,
private readonly Domain $domain,
private readonly Connector $connector
private readonly Connector $connector,
) {
parent::__construct();
}

View File

@@ -16,7 +16,7 @@ class DomainUpdateErrorNotification extends DomainWatchdogNotification
{
public function __construct(
private readonly Address $sender,
private readonly Domain $domain
private readonly Domain $domain,
) {
parent::__construct();
}

View File

@@ -17,7 +17,7 @@ class DomainUpdateNotification extends DomainWatchdogNotification
{
public function __construct(
private readonly Address $sender,
private readonly DomainEvent $domainEvent
private readonly DomainEvent $domainEvent,
) {
parent::__construct();
}