Apply Pint fixes

This commit is contained in:
Bubka
2023-12-20 16:55:58 +01:00
parent 71840b000a
commit ecd905c36c
36 changed files with 141 additions and 160 deletions

View File

@ -44,10 +44,10 @@ class UserControllerTest extends FeatureTestCase
->json('GET', '/api/v1/user')
->assertOk()
->assertJsonFragment([
'name' => $this->user->name,
'id' => $this->user->id,
'email' => $this->user->email,
'is_admin' => $this->user->is_admin,
'name' => $this->user->name,
'id' => $this->user->id,
'email' => $this->user->email,
'is_admin' => $this->user->is_admin,
])
->assertJsonStructure([
'preferences',