Apply Pint fixes

This commit is contained in:
Bubka
2024-09-26 23:50:01 +02:00
parent 18fe45778a
commit c00b04e192
118 changed files with 398 additions and 458 deletions

View File

@ -24,7 +24,7 @@ class TwoFAccountModelTest extends ModelTestCase
public function test_model_configuration()
{
$this->runConfigurationAssertions(
new TwoFAccount(),
new TwoFAccount,
[],
[],
['*'],
@ -138,7 +138,7 @@ class TwoFAccountModelTest extends ModelTestCase
#[Test]
public function test_user_relation()
{
$model = new TwoFAccount();
$model = new TwoFAccount;
$relation = $model->user();
$this->assertInstanceOf(BelongsTo::class, $relation);