Skip to content

Commit

Permalink
Make the service readonly
Browse files Browse the repository at this point in the history
  • Loading branch information
marcvdm committed Oct 24, 2023
1 parent 629e358 commit 7709a0b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Domain/Zone.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

final class Zone implements DomainObjectInterface
{
private function __construct(public string $service, public ?string $template, public ?bool $link)
private function __construct(public readonly string $service, public ?string $template, public ?bool $link)
{
}

Expand Down

0 comments on commit 7709a0b

Please sign in to comment.