Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
File Manager
/
vendor
/
vlucas
:
GivesAbilities.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php namespace Silber\Bouncer\Conductors; class GivesAbilities { use Concerns\AssociatesAbilities; /** * The authority to be given abilities. * * @var \Illuminate\Database\Eloquent\Model|string|null */ protected $authority; /** * Whether the associated abilities should be forbidden abilities. * * @var bool */ protected $forbidding = false; /** * Constructor. * * @param \Illuminate\Database\Eloquent\Model|string|null $authority */ public function __construct($authority = null) { $this->authority = $authority; } }