🤖 Auto commit for release 'develop' on 2025-07-07

This commit is contained in:
JC5
2025-07-07 05:34:03 +02:00
parent d73df9bf0a
commit d998eff56e
14 changed files with 41 additions and 51 deletions

View File

@@ -25,7 +25,6 @@ declare(strict_types=1);
namespace Tests\unit\Support;
use Override;
use Iterator;
use Carbon\Carbon;
use FireflyIII\Support\Navigation;
use Illuminate\Support\Facades\Log;
@@ -59,7 +58,7 @@ final class NavigationStartOfPeriodTest extends TestCase
$this->assertSame($expected->toDateString(), $period->toDateString());
}
public static function provideDates(): Iterator
public static function provideDates(): iterable
{
yield 'custom' => ['custom', Carbon::now(), Carbon::now()];
@@ -124,7 +123,7 @@ final class NavigationStartOfPeriodTest extends TestCase
$this->assertSame($expected->toDateString(), $period->toDateString());
}
public static function provideUnknownFrequencies(): Iterator
public static function provideUnknownFrequencies(): iterable
{
yield '1day' => ['1day', Carbon::now(), Carbon::now()];