Skip to content

Commit

Permalink
Fix styling
Browse files Browse the repository at this point in the history
  • Loading branch information
rubenvanassche authored and actions-user committed May 21, 2021
1 parent 6ed3278 commit 9030a02
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 deletions.
6 changes: 3 additions & 3 deletions tests/Factories/SettingsCastFactoryTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -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;
};

Expand Down
1 change: 0 additions & 1 deletion tests/SettingsRepositories/RedisSettingsRepositoryTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -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()
{
Expand Down
1 change: 0 additions & 1 deletion tests/SettingsTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 9030a02

Please sign in to comment.