mirror of
https://github.com/pelican-dev/panel.git
synced 2025-05-24 17:44:45 +02:00
14 lines
152 B
PHP
14 lines
152 B
PHP
<?php
|
|
|
|
namespace App\Policies;
|
|
|
|
use App\Models\User;
|
|
|
|
class EggPolicy
|
|
{
|
|
public function create(User $user): bool
|
|
{
|
|
return true;
|
|
}
|
|
}
|