style: apply php-cs-fixer fixes

This commit is contained in:
Steven Qiu 2025-06-28 06:17:40 +08:00
parent 74ce668221
commit cfda2a6bf8
No known key found for this signature in database
GPG Key ID: 8ACE9DCFC76F38B9
3 changed files with 41 additions and 40 deletions

14
.vscode/launch.json vendored
View File

@ -1,6 +1,12 @@
{ {
"version": "0.2.0", "version": "0.2.0",
"configurations": [ "configurations": [
{
"name": "Listen for Xdebug",
"type": "php",
"request": "launch",
"port": 9003
},
{ {
"type": "node", "type": "node",
"request": "launch", "request": "launch",
@ -8,17 +14,13 @@
"program": "${workspaceFolder}/node_modules/.bin/jest", "program": "${workspaceFolder}/node_modules/.bin/jest",
"args": ["${file}"], "args": ["${file}"],
"internalConsoleOptions": "openOnSessionStart", "internalConsoleOptions": "openOnSessionStart",
"skipFiles": [ "skipFiles": ["<node_internals>/**"]
"<node_internals>/**"
]
}, },
{ {
"type": "php", "type": "php",
"request": "launch", "request": "launch",
"name": "Launch with XDebug", "name": "Launch with XDebug",
"ignore": [ "ignore": ["**/vendor/**/*.php"]
"**/vendor/**/*.php"
]
}, },
{ {
"type": "firefox", "type": "firefox",

View File

@ -5,7 +5,6 @@ namespace App\Providers;
use App\Models\Scope; use App\Models\Scope;
use Illuminate\Foundation\Support\Providers\AuthServiceProvider as ServiceProvider; use Illuminate\Foundation\Support\Providers\AuthServiceProvider as ServiceProvider;
use Illuminate\Support\Facades\Cache; use Illuminate\Support\Facades\Cache;
use Illuminate\Support\Facades\Schema;
use Illuminate\Support\Facades\Storage; use Illuminate\Support\Facades\Storage;
use Laravel\Passport\Passport; use Laravel\Passport\Passport;