Total Complexity | 4 |
Total Lines | 41 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
12 | class SermonObserver |
||
13 | { |
||
14 | use FileTraits; |
||
15 | |||
16 | /** |
||
17 | * Handle the sermon "created" event. |
||
18 | * |
||
19 | * @param Sermon $sermon |
||
20 | * @return void |
||
21 | */ |
||
22 | public function created(Sermon $sermon) |
||
29 | } |
||
30 | |||
31 | /** |
||
32 | * Handle the sermon "updated" event. |
||
33 | * |
||
34 | * @param Sermon $sermon |
||
35 | * @return void |
||
36 | */ |
||
37 | public function updated(Sermon $sermon) |
||
38 | { |
||
39 | // |
||
40 | } |
||
41 | |||
42 | /** |
||
43 | * Handle the sermon "deleted" event. |
||
44 | * |
||
45 | * @param Sermon $sermon |
||
46 | * @return void |
||
47 | */ |
||
48 | public function deleted(Sermon $sermon) |
||
53 | } |
||
54 | } |
||
56 |