1 | <?php namespace Arcanesoft\Blog\Models\Observers; |
||
11 | class CategoryObserver extends AbstractObserver |
||
12 | { |
||
13 | /* ------------------------------------------------------------------------------------------------ |
||
14 | | Events |
||
15 | | ------------------------------------------------------------------------------------------------ |
||
16 | */ |
||
17 | /** |
||
18 | * Listen to the Tag saved event. |
||
19 | * |
||
20 | * @param \Arcanesoft\Blog\Models\Category $category |
||
21 | */ |
||
22 | public function saved(Category $category) |
||
26 | |||
27 | /** |
||
28 | * Listen to the Category deleted event. |
||
29 | * |
||
30 | * @param \Arcanesoft\Blog\Models\Category $category |
||
31 | */ |
||
32 | public function deleted(Category $category) |
||
36 | } |
||
37 |