Apply Laravel Pint fixes

This commit is contained in:
Bubka
2023-03-10 22:59:46 +01:00
parent 80723d94ba
commit dce3d16c37
37 changed files with 190 additions and 160 deletions

View File

@ -14,7 +14,9 @@ class SettingControllerTest extends FeatureTestCase
/**
* @var \App\Models\User|\Illuminate\Contracts\Auth\Authenticatable
*/
protected $user, $admin;
protected $user;
protected $admin;
private const SETTING_JSON_STRUCTURE = [
'key',
@ -40,7 +42,7 @@ class SettingControllerTest extends FeatureTestCase
{
parent::setUp();
$this->user = User::factory()->create();
$this->user = User::factory()->create();
$this->admin = User::factory()->administrator()->create();
}