Completed
Push — master ( 62ab57...17eff7 )
by Fumio
02:10
created

AddonRegistered::__construct()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 3
CRAP Score 1

Importance

Changes 0
Metric Value
cc 1
eloc 2
nc 1
nop 1
dl 0
loc 4
ccs 3
cts 3
cp 1
crap 1
rs 10
c 0
b 0
f 0
1
<?php
2
3
namespace Jumilla\Addomnipot\Laravel\Events;
4
5
use Jumilla\Addomnipot\Laravel\Environment;
6
7
class AddonRegistered
8
{
9
	public $environment;
10
11 1
	public function __construct(Environment $environment)
12
	{
13 1
		$this->environment = $environment;
14 1
	}
15
}
16