Passed
Push — master ( 70c8fa...dac2c3 )
by noitran
09:31
created

Factory   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 15
Duplicated Lines 0 %

Test Coverage

Coverage 0%

Importance

Changes 0
Metric Value
wmc 1
eloc 3
dl 0
loc 15
ccs 0
cts 2
cp 0
rs 10
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 3 1
1
<?php
2
3
namespace Noitran\RQL\Factories;
4
5
use Illuminate\Contracts\Container\Container as IlluminateContainer;
6
7
/**
8
 * Class Factory
9
 */
10
class Factory
11
{
12
    /**
13
     * @var IlluminateContainer
14
     */
15
    protected $container;
16
17
    /**
18
     * Factory constructor.
19
     *
20
     * @param IlluminateContainer $container
21
     */
22
    public function __construct(IlluminateContainer $container)
23
    {
24
        $this->container = $container;
25
    }
26
}
27