Skip to content

Commit

Permalink
Fix phpstan issues
Browse files Browse the repository at this point in the history
  • Loading branch information
romanzipp committed Sep 4, 2023
1 parent 7a3fc21 commit 0b9488f
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/Controllers/RetryMonitorController.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,11 @@ class RetryMonitorController
{
public function __invoke(Request $request, int $monitorId): RedirectResponse
{
/** @var \romanzipp\QueueMonitor\Models\Monitor $monitor */
/**
* @var \romanzipp\QueueMonitor\Models\Monitor $monitor
*
* @phpstan-ignore-next-line
*/
$monitor = QueueMonitor::getModel()
->query()
->where('status', MonitorStatus::FAILED)
Expand Down

0 comments on commit 0b9488f

Please sign in to comment.