fix lint
Tests & Lint & Deploy to Railway / build (2.6.6, 20.x, 8.3) (push) Failing after 1m27s
Details
Tests & Lint & Deploy to Railway / build (2.6.6, 20.x, 8.3) (push) Failing after 1m27s
Details
This commit is contained in:
parent
411a99d46f
commit
bdf3747d9b
|
@ -4,7 +4,7 @@ namespace App\Http\Controllers;
|
||||||
|
|
||||||
use App\Http\Requests\StorelabelRequest;
|
use App\Http\Requests\StorelabelRequest;
|
||||||
use App\Http\Requests\UpdatelabelRequest;
|
use App\Http\Requests\UpdatelabelRequest;
|
||||||
use App\Models\label;
|
use App\Models\Label;
|
||||||
|
|
||||||
class LabelController extends Controller
|
class LabelController extends Controller
|
||||||
{
|
{
|
||||||
|
@ -35,7 +35,7 @@ class LabelController extends Controller
|
||||||
/**
|
/**
|
||||||
* Display the specified resource.
|
* Display the specified resource.
|
||||||
*/
|
*/
|
||||||
public function show(label $label)
|
public function show(Label $label)
|
||||||
{
|
{
|
||||||
//
|
//
|
||||||
}
|
}
|
||||||
|
@ -43,7 +43,7 @@ class LabelController extends Controller
|
||||||
/**
|
/**
|
||||||
* Show the form for editing the specified resource.
|
* Show the form for editing the specified resource.
|
||||||
*/
|
*/
|
||||||
public function edit(label $label)
|
public function edit(Label $label)
|
||||||
{
|
{
|
||||||
//
|
//
|
||||||
}
|
}
|
||||||
|
@ -51,7 +51,7 @@ class LabelController extends Controller
|
||||||
/**
|
/**
|
||||||
* Update the specified resource in storage.
|
* Update the specified resource in storage.
|
||||||
*/
|
*/
|
||||||
public function update(UpdatelabelRequest $request, label $label)
|
public function update(UpdatelabelRequest $request, Label $label)
|
||||||
{
|
{
|
||||||
//
|
//
|
||||||
}
|
}
|
||||||
|
@ -59,7 +59,7 @@ class LabelController extends Controller
|
||||||
/**
|
/**
|
||||||
* Remove the specified resource from storage.
|
* Remove the specified resource from storage.
|
||||||
*/
|
*/
|
||||||
public function destroy(label $label)
|
public function destroy(Label $label)
|
||||||
{
|
{
|
||||||
//
|
//
|
||||||
}
|
}
|
||||||
|
|
|
@ -5,7 +5,7 @@ namespace App\Models;
|
||||||
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
||||||
use Illuminate\Database\Eloquent\Model;
|
use Illuminate\Database\Eloquent\Model;
|
||||||
|
|
||||||
class label extends Model
|
class Label extends Model
|
||||||
{
|
{
|
||||||
use HasFactory;
|
use HasFactory;
|
||||||
}
|
}
|
|
@ -3,7 +3,7 @@
|
||||||
namespace App\Policies;
|
namespace App\Policies;
|
||||||
|
|
||||||
use App\Models\User;
|
use App\Models\User;
|
||||||
use App\Models\label;
|
use App\Models\Label;
|
||||||
use Illuminate\Auth\Access\Response;
|
use Illuminate\Auth\Access\Response;
|
||||||
|
|
||||||
class LabelPolicy
|
class LabelPolicy
|
||||||
|
@ -19,7 +19,7 @@ class LabelPolicy
|
||||||
/**
|
/**
|
||||||
* Determine whether the user can view the model.
|
* Determine whether the user can view the model.
|
||||||
*/
|
*/
|
||||||
public function view(User $user, label $label): bool
|
public function view(User $user, Label $label): bool
|
||||||
{
|
{
|
||||||
//
|
//
|
||||||
}
|
}
|
||||||
|
@ -35,7 +35,7 @@ class LabelPolicy
|
||||||
/**
|
/**
|
||||||
* Determine whether the user can update the model.
|
* Determine whether the user can update the model.
|
||||||
*/
|
*/
|
||||||
public function update(User $user, label $label): bool
|
public function update(User $user, Label $label): bool
|
||||||
{
|
{
|
||||||
//
|
//
|
||||||
}
|
}
|
||||||
|
@ -43,7 +43,7 @@ class LabelPolicy
|
||||||
/**
|
/**
|
||||||
* Determine whether the user can delete the model.
|
* Determine whether the user can delete the model.
|
||||||
*/
|
*/
|
||||||
public function delete(User $user, label $label): bool
|
public function delete(User $user, Label $label): bool
|
||||||
{
|
{
|
||||||
//
|
//
|
||||||
}
|
}
|
||||||
|
@ -51,7 +51,7 @@ class LabelPolicy
|
||||||
/**
|
/**
|
||||||
* Determine whether the user can restore the model.
|
* Determine whether the user can restore the model.
|
||||||
*/
|
*/
|
||||||
public function restore(User $user, label $label): bool
|
public function restore(User $user, Label $label): bool
|
||||||
{
|
{
|
||||||
//
|
//
|
||||||
}
|
}
|
||||||
|
@ -59,7 +59,7 @@ class LabelPolicy
|
||||||
/**
|
/**
|
||||||
* Determine whether the user can permanently delete the model.
|
* Determine whether the user can permanently delete the model.
|
||||||
*/
|
*/
|
||||||
public function forceDelete(User $user, label $label): bool
|
public function forceDelete(User $user, Label $label): bool
|
||||||
{
|
{
|
||||||
//
|
//
|
||||||
}
|
}
|
||||||
|
|
|
@ -5,7 +5,7 @@ namespace Database\Factories;
|
||||||
use Illuminate\Database\Eloquent\Factories\Factory;
|
use Illuminate\Database\Eloquent\Factories\Factory;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @extends \Illuminate\Database\Eloquent\Factories\Factory<\App\Models\label>
|
* @extends \Illuminate\Database\Eloquent\Factories\Factory<\App\Models\Label>
|
||||||
*/
|
*/
|
||||||
class LabelFactory extends Factory
|
class LabelFactory extends Factory
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue