Apply Laravel Pint fixes

This commit is contained in:
Bubka
2022-12-13 12:07:29 +01:00
parent 6deb279c8d
commit 2d706e61b7
48 changed files with 246 additions and 260 deletions

View File

@@ -35,7 +35,7 @@ class WebAuthnRecoveryControllerTest extends FeatureTestCase
/**
* @test
*/
public function setUp(): void
public function setUp() : void
{
parent::setUp();
@@ -96,8 +96,8 @@ class WebAuthnRecoveryControllerTest extends FeatureTestCase
]);
$this->json('POST', '/webauthn/recover', [
'token' => self::ACTUAL_TOKEN_VALUE,
'email' => $this->user->email,
'token' => self::ACTUAL_TOKEN_VALUE,
'email' => $this->user->email,
'password' => UserFactory::USER_PASSWORD,
])
->assertStatus(422)