Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
File Manager
/
vendor
/
silber
/
bouncer
/
src
/
Database
/
Queries
:
Clipboard.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php namespace Silber\Bouncer\Contracts; use Illuminate\Database\Eloquent\Model; interface Clipboard { /** * Determine if the given authority has the given ability. * * @param string $ability * @param \Illuminate\Database\Eloquent\Model|string|null $model * @return bool */ public function check(Model $authority, $ability, $model = null); /** * Determine if the given authority has the given ability, and return the ability ID. * * @param string $ability * @param \Illuminate\Database\Eloquent\Model|string|null $model * @return int|bool|null */ public function checkGetId(Model $authority, $ability, $model = null); /** * Check if an authority has the given roles. * * @param array|string $roles * @param string $boolean * @return bool */ public function checkRole(Model $authority, $roles, $boolean = 'or'); /** * Get the given authority's roles. * * @return \Illuminate\Support\Collection */ public function getRoles(Model $authority); /** * Get a list of the authority's abilities. * * @param bool $allowed * @return \Illuminate\Database\Eloquent\Collection */ public function getAbilities(Model $authority, $allowed = true); /** * Get a list of the authority's forbidden abilities. * * @return \Illuminate\Database\Eloquent\Collection */ public function getForbiddenAbilities(Model $authority); }