fix lint
Tests & Lint & Deploy to Railway / build (2.6.6, 20.x, 8.3) (push) Has been cancelled Details

This commit is contained in:
aslan 2024-04-27 14:41:34 +03:00
parent 07a9dae0ed
commit dbaf372da0
3 changed files with 4 additions and 3 deletions

View File

@ -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.

View File

@ -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('/');

View File

@ -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);
}