Apply Laravel Pint fixes

This commit is contained in:
Bubka
2023-03-26 17:13:32 +02:00
parent 1e0c0b8cfc
commit ac6c715e9a
73 changed files with 33 additions and 247 deletions

View File

@ -316,6 +316,7 @@ class TwoFAccountControllerTest extends FeatureTestCase
/**
* @dataProvider accountCreationProvider
*
* @test
*/
public function test_store_without_encryption_returns_success_with_consistent_resource_structure($payload, $expected)
@ -332,6 +333,7 @@ class TwoFAccountControllerTest extends FeatureTestCase
/**
* @dataProvider accountCreationProvider
*
* @test
*/
public function test_store_with_encryption_returns_success_with_consistent_resource_structure($payload, $expected)
@ -655,15 +657,15 @@ class TwoFAccountControllerTest extends FeatureTestCase
])
->assertOk()
->assertJsonFragment([
'id' => 0,
'account' => OtpTestData::ACCOUNT,
'service' => OtpTestData::SERVICE,
'otp_type' => 'totp',
'secret' => OtpTestData::SECRET,
'algorithm' => OtpTestData::ALGORITHM_DEFAULT,
'digits' => OtpTestData::DIGITS_DEFAULT,
'period' => OtpTestData::PERIOD_DEFAULT,
'icon' => null,
'id' => 0,
'account' => OtpTestData::ACCOUNT,
'service' => OtpTestData::SERVICE,
'otp_type' => 'totp',
'secret' => OtpTestData::SECRET,
'algorithm' => OtpTestData::ALGORITHM_DEFAULT,
'digits' => OtpTestData::DIGITS_DEFAULT,
'period' => OtpTestData::PERIOD_DEFAULT,
'icon' => null,
])
->assertJsonFragment([
'id' => 0,