We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
| 1 | <?php |
||
| 8 | class Permission extends OriginalPermission |
||
| 9 | { |
||
| 10 | use CrudTrait; |
||
| 11 | |||
| 12 | protected $fillable = ['name', 'updated_at', 'created_at']; |
||
| 13 | |||
| 14 | /** |
||
| 15 | * Gets the permission prefix (eg. admin.page) |
||
| 16 | * |
||
| 17 | * @return null |
||
| 18 | */ |
||
| 19 | public function prefix() |
||
| 29 | |||
| 30 | /** |
||
| 31 | * Gets the permission item (eg. list, create, update...) |
||
| 32 | * |
||
| 33 | * @return string |
||
| 34 | */ |
||
| 35 | public function item() |
||
| 39 | } |
||
| 40 |