Viewing file: Permission.php (920 B) -rwxrwxr-x Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
namespace Spatie\Permission\Contracts;
use Illuminate\Database\Eloquent\Relations\BelongsToMany;
interface Permission { /** * A permission can be applied to roles. */ public function roles(): BelongsToMany;
/** * Find a permission by its name. * * @param string|null $guardName * * @throws \Spatie\Permission\Exceptions\PermissionDoesNotExist */ public static function findByName(string $name, $guardName): self;
/** * Find a permission by its id. * * @param string|null $guardName * * @throws \Spatie\Permission\Exceptions\PermissionDoesNotExist */ public static function findById(int $id, $guardName): self;
/** * Find or Create a permission by its name and guard name. * * @param string|null $guardName */ public static function findOrCreate(string $name, $guardName): self; }
|