Skip to content

Commit

Permalink
[BUGFIX] Added parent contruct call for extended repository
Browse files Browse the repository at this point in the history
  • Loading branch information
hojalatheef committed Dec 12, 2024
1 parent 45791a8 commit 409bd38
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Classes/Domain/Repository/WeatherAlertRepository.php
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,9 @@ class WeatherAlertRepository extends Repository implements WeatherAlertRepositor

public function __construct(
private readonly ConnectionPool $connectionPool,
) {}
) {
parent::__construct();
}

/**
* Returns current alerts filtered by user selection
Expand Down

0 comments on commit 409bd38

Please sign in to comment.