fix lint
Tests & Lint & Deploy to Railway / build (2.6.6, 20.x, 8.3) (push) Failing after 1m59s
Details
Tests & Lint & Deploy to Railway / build (2.6.6, 20.x, 8.3) (push) Failing after 1m59s
Details
This commit is contained in:
parent
72bc5ec8ae
commit
c171d8f096
|
@ -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)
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
|
|
|
@ -9,7 +9,6 @@ class AppServiceProvider extends ServiceProvider
|
|||
{
|
||||
public function register(): void
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
public function boot(): void
|
||||
|
|
|
@ -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) {
|
||||
|
|
Loading…
Reference in New Issue