1 | <?php namespace App\Modules\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) |
||
32 | |||
33 | public function updated($model) |
||
37 | |||
38 | /** |
||
39 | * Soft delete the associated groups and logs to the deleted user. |
||
40 | * |
||
41 | * @param object $model the delted model. |
||
42 | * @return void |
||
43 | */ |
||
44 | public function deleting($model) |
||
49 | |||
50 | public function deleted($model) |
||
54 | |||
55 | } |
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.