mirror of
https://github.com/pelican-dev/panel.git
synced 2025-05-23 05:34: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;
|
|
}
|
|
}
|