UserCreated   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 14
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Test Coverage

Coverage 100%

Importance

Changes 0
Metric Value
wmc 1
lcom 0
cbo 0
dl 0
loc 14
ccs 4
cts 4
cp 1
rs 10
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 5 1
1
<?php
2
3
namespace Omatech\Mage\Core\Events\Users;
4
5
use Omatech\Mage\Core\Domains\Users\Contracts\UserInterface;
6
7
class UserCreated
8
{
9
    public $user;
10
    public $wasRecentlyCreated;
11
12
    /**
13
     * UserCreated constructor.
14
     */
15 19
    public function __construct(UserInterface $user, bool $wasRecentlyCreated)
16
    {
17 19
        $this->user = $user;
18 19
        $this->wasRecentlyCreated = $wasRecentlyCreated;
19 19
    }
20
}
21