From dbaf372da0017e060fd74cbe6dd87253b3554a6e Mon Sep 17 00:00:00 2001 From: aslan Date: Sat, 27 Apr 2024 14:41:34 +0300 Subject: [PATCH] fix lint --- app/Models/User.php | 3 ++- tests/Feature/ExampleTest.php | 2 +- tests/Unit/ExampleTest.php | 2 +- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/app/Models/User.php b/app/Models/User.php index def621f..90155c7 100644 --- a/app/Models/User.php +++ b/app/Models/User.php @@ -9,7 +9,8 @@ use Illuminate\Notifications\Notifiable; class User extends Authenticatable { - use HasFactory, Notifiable; + use HasFactory; + use Notifiable; /** * The attributes that are mass assignable. diff --git a/tests/Feature/ExampleTest.php b/tests/Feature/ExampleTest.php index 8364a84..b8ab24a 100644 --- a/tests/Feature/ExampleTest.php +++ b/tests/Feature/ExampleTest.php @@ -10,7 +10,7 @@ class ExampleTest extends TestCase /** * A basic test example. */ - public function test_the_application_returns_a_successful_response(): void + public function testTheApplicationReturnsASuccessfulResponse(): void { $response = $this->get('/'); diff --git a/tests/Unit/ExampleTest.php b/tests/Unit/ExampleTest.php index 5773b0c..b5da561 100644 --- a/tests/Unit/ExampleTest.php +++ b/tests/Unit/ExampleTest.php @@ -9,7 +9,7 @@ class ExampleTest extends TestCase /** * A basic test example. */ - public function test_that_true_is_true(): void + public function testThatTrueIsTrue(): void { $this->assertTrue(true); }