| 1 | <?php namespace App\Modules\V1\Acl\ModelObservers; |
||
| 6 | class AclUserObserver { |
||
| 7 | |||
| 8 | public function saving($model) |
||
| 12 | |||
| 13 | public function saved($model) |
||
| 17 | |||
| 18 | public function creating($model) |
||
| 22 | |||
| 23 | public function created($model) |
||
| 27 | |||
| 28 | public function updating($model) |
||
| 35 | |||
| 36 | public function updated($model) |
||
| 40 | |||
| 41 | /** |
||
| 42 | * Soft delete user logs. |
||
| 43 | * |
||
| 44 | * @param object $model the delted model. |
||
| 45 | * @return void |
||
| 46 | */ |
||
| 47 | public function deleting($model) |
||
| 55 | |||
| 56 | public function deleted($model) |
||
| 60 | |||
| 61 | public function restoring($model) |
||
| 65 | |||
| 66 | public function restored($model) |
||
| 70 | } |
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.