Skip to content

Commit

Permalink
fix rebase error ?
Browse files Browse the repository at this point in the history
  • Loading branch information
jygaulier committed Oct 21, 2024
1 parent 2e5e04c commit 5947e8b
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
{
public function __construct(
private string $module,
private bool $enabled,
private array $options,
private ?string $description,
) {
Expand All @@ -25,4 +26,9 @@ public function getOptions(): array
{
return $this->options;
}

public function isEnabled(): bool
{
return $this->enabled;
}
}

0 comments on commit 5947e8b

Please sign in to comment.