Skip to content

Commit

Permalink
[5.x] Fix type error in HandleEntrySchedule job (#11244)
Browse files Browse the repository at this point in the history
  • Loading branch information
duncanmcclean authored Dec 11, 2024
1 parent ed9161d commit 6adc8d4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Entries/MinuteEntries.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@

namespace Statamic\Entries;

use Carbon\Carbon;
use Carbon\CarbonInterface;
use Statamic\Facades\Collection;
use Statamic\Facades\Entry;

class MinuteEntries
{
public function __construct(private readonly Carbon $minute)
public function __construct(private readonly CarbonInterface $minute)
{
}

Expand Down

0 comments on commit 6adc8d4

Please sign in to comment.