Skip to content

Commit 253f2d6

Browse files
committed
ci: update Dependencies
1 parent b45829e commit 253f2d6

File tree

8 files changed

+748
-751
lines changed

8 files changed

+748
-751
lines changed

app/Models/User.php

Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -15,22 +15,13 @@ class User extends Authenticatable
1515
use HasFactory;
1616
use Notifiable;
1717

18-
/**
19-
* The attributes that are mass assignable.
20-
*
21-
* @var array<int, string>
22-
*/
2318
protected $fillable = [
2419
'name',
2520
'email',
2621
'password',
2722
];
2823

29-
/**
30-
* The attributes that should be hidden for serialization.
31-
*
32-
* @var array<int, string>
33-
*/
24+
3425
protected $hidden = [
3526
'password',
3627
'remember_token',
@@ -54,5 +45,4 @@ protected static function newFactory(): \Illuminate\Database\Eloquent\Factories\
5445
{
5546
return UserFactory::new();
5647
}
57-
5848
}

composer.lock

Lines changed: 739 additions & 715 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

config/security.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525

2626
'evil' => [
2727
'attributes' => null,
28-
'tags' => null,
28+
'tags' => null,
2929
],
3030

3131
/*

database/factories/UserFactory.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66
use Illuminate\Support\Facades\Hash;
77
use Illuminate\Support\Str;
88

9-
109
class UserFactory extends Factory
1110
{
1211
/**

database/seeders/DatabaseSeeder.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44

55
use App\Models\User;
66
use Illuminate\Database\Seeder;
7+
78
/**
89
* @psalm-suppress UnusedClass
910
*/

pnpm-lock.yaml

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

result.html

Lines changed: 0 additions & 11 deletions
This file was deleted.

tests/Unit/ExampleTest.php

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,5 @@
66

77
class ExampleTest extends TestCase
88
{
9-
/**
10-
* A basic test example.
11-
*/
12-
public function test_that_true_is_true(): void
13-
{
14-
$this->assertTrue(true);
15-
}
9+
1610
}

0 commit comments

Comments
 (0)