PermissionCreated::__construct()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 5

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 4
CRAP Score 1

Importance

Changes 0
Metric Value
dl 0
loc 5
ccs 4
cts 4
cp 1
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 2
crap 1
1
<?php
2
3
namespace Omatech\Mage\Core\Events\Permissions;
4
5
use Omatech\Mage\Core\Domains\Permissions\Contracts\PermissionInterface;
6
7
class PermissionCreated
8
{
9
    public $permission;
10
    public $wasRecentlyCreated;
11
12
    /**
13
     * PermissionCreated constructor.
14
     */
15 21
    public function __construct(PermissionInterface $permission, bool $wasRecentlyCreated)
16
    {
17 21
        $this->permission = $permission;
18 21
        $this->wasRecentlyCreated = $wasRecentlyCreated;
19 21
    }
20
}
21