Completed
Push — master ( f9e78a...edb43e )
by Abdelrahman
09:22
created

UserHandler::updated()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 1
nc 1
nop 1
dl 0
loc 4
rs 10
c 0
b 0
f 0
1
<?php
2
3
/*
4
 * NOTICE OF LICENSE
5
 *
6
 * Part of the Rinvex Fort Package.
7
 *
8
 * This source file is subject to The MIT License (MIT)
9
 * that is bundled with this package in the LICENSE file.
10
 *
11
 * Package: Rinvex Fort Package
12
 * License: The MIT License (MIT)
13
 * Link:    https://rinvex.com
14
 */
15
16
namespace Rinvex\Fort\Handlers;
17
18
use Rinvex\Fort\Models\User;
19
20
class UserHandler
21
{
22
    /**
23
     * Listen to the User created event.
24
     *
25
     * @param \Rinvex\Fort\Models\User $user
26
     *
27
     * @return void
28
     */
29
    public function created(User $user)
0 ignored issues
show
Unused Code introduced by
The parameter $user is not used and could be removed.

This check looks from parameters that have been defined for a function or method, but which are not used in the method body.

Loading history...
30
    {
31
        //
32
    }
33
34
    /**
35
     * Listen to the User updated event.
36
     *
37
     * @param \Rinvex\Fort\Models\User $user
38
     *
39
     * @return void
40
     */
41
    public function updated(User $user)
0 ignored issues
show
Unused Code introduced by
The parameter $user is not used and could be removed.

This check looks from parameters that have been defined for a function or method, but which are not used in the method body.

Loading history...
42
    {
43
        //
44
    }
45
46
    /**
47
     * Listen to the User deleted event.
48
     *
49
     * @param \Rinvex\Fort\Models\User $user
50
     *
51
     * @return void
52
     */
53
    public function deleted(User $user)
0 ignored issues
show
Unused Code introduced by
The parameter $user is not used and could be removed.

This check looks from parameters that have been defined for a function or method, but which are not used in the method body.

Loading history...
54
    {
55
        //
56
    }
57
}
58