From 9030a02da03486c77f2dea734778615bf4a32593 Mon Sep 17 00:00:00 2001 From: rubenvanassche Date: Fri, 21 May 2021 14:18:59 +0000 Subject: [PATCH] Fix styling --- tests/Factories/SettingsCastFactoryTest.php | 6 +++--- tests/SettingsRepositories/RedisSettingsRepositoryTest.php | 1 - tests/SettingsTest.php | 1 - 3 files changed, 3 insertions(+), 5 deletions(-) diff --git a/tests/Factories/SettingsCastFactoryTest.php b/tests/Factories/SettingsCastFactoryTest.php index 4a99bfe..69af063 100644 --- a/tests/Factories/SettingsCastFactoryTest.php +++ b/tests/Factories/SettingsCastFactoryTest.php @@ -200,13 +200,13 @@ public function it_will_not_resolve_a_cast_for_a_primitive_type() /** @var int */ public $int; - /** @var ?int */ + /** @var ?int */ public $a_nullable_int; - /** @var int|null */ + /** @var int|null */ public $another_nullable_int; - /** @var int[]|null */ + /** @var int[]|null */ public $an_array_of_ints_or_null; }; diff --git a/tests/SettingsRepositories/RedisSettingsRepositoryTest.php b/tests/SettingsRepositories/RedisSettingsRepositoryTest.php index a3c369a..77f8304 100644 --- a/tests/SettingsRepositories/RedisSettingsRepositoryTest.php +++ b/tests/SettingsRepositories/RedisSettingsRepositoryTest.php @@ -138,7 +138,6 @@ public function it_can_delete_a_property(): void $this->assertFalse($this->client->hExists('test', 'a')); } - /** @test */ public function it_can_lock_settings() { diff --git a/tests/SettingsTest.php b/tests/SettingsTest.php index 4e10c30..5f90027 100644 --- a/tests/SettingsTest.php +++ b/tests/SettingsTest.php @@ -22,7 +22,6 @@ use Spatie\LaravelSettings\Migrations\SettingsMigrator; use Spatie\LaravelSettings\Models\SettingsProperty; use Spatie\LaravelSettings\SettingsCache; -use Spatie\LaravelSettings\Tests\TestClasses\DateSettings; use Spatie\LaravelSettings\Tests\TestClasses\DummyDto; use Spatie\LaravelSettings\Tests\TestClasses\DummyEncryptedSettings; use Spatie\LaravelSettings\Tests\TestClasses\DummySettings;