Make sure phpcs and rector agree on styles.

This commit is contained in:
James Cole
2025-06-26 11:57:15 +02:00
parent ae5912ab52
commit 1087278890
19 changed files with 32 additions and 30 deletions

View File

@@ -36,7 +36,7 @@ abstract class IntervalTestCase extends TestCase
public function testGivenAnEpochWhenCallTheNextDateThenReturnsTheExpectedDateSuccessful(IntervalProvider $provider): void
{
$period = static::factory()->nextDate($provider->epoch);
self::assertSame($provider->expected->toDateString(), $period->toDateString());
$this->assertSame($provider->expected->toDateString(), $period->toDateString());
}
public static function provider(): iterable