fix lint
Tests & Lint & Deploy to Railway / build (2.6.6, 20.x, 8.3) (push) Failing after 1m59s Details

This commit is contained in:
aslan 2024-05-23 14:49:19 +03:00
parent 72bc5ec8ae
commit c171d8f096
3 changed files with 2 additions and 9 deletions

View File

@ -16,31 +16,25 @@ class LabelController extends Controller
public function create()
{
}
public function store(StorelabelRequest $request)
{
}
public function show(Label $label)
{
}
public function edit(Label $label)
{
}
public function update(UpdatelabelRequest $request, Label $label)
{
}
public function destroy(Label $label)
{
}
}

View File

@ -9,7 +9,6 @@ class AppServiceProvider extends ServiceProvider
{
public function register(): void
{
}
public function boot(): void

View File

@ -6,8 +6,8 @@ use Illuminate\Foundation\Configuration\Middleware;
return Application::configure(basePath: dirname(__DIR__))
->withRouting(
web: __DIR__.'/../routes/web.php',
commands: __DIR__.'/../routes/console.php',
web: __DIR__ . '/../routes/web.php',
commands: __DIR__ . '/../routes/console.php',
health: '/up',
)
->withMiddleware(function (Middleware $middleware) {