Completed
Branch barista-prod (8f1757)
by
unknown
38:38 queued 29:41
created

Factory   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 19
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

Changes 0
Metric Value
dl 0
loc 19
rs 10
c 0
b 0
f 0
wmc 1
lcom 0
cbo 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 4 1
1
<?php
2
3
namespace EventEspresso\core\services\factory;
4
5
use EventEspresso\core\services\loaders\LoaderInterface;
6
7
abstract class Factory implements FactoryInterface
8
{
9
10
    /**
11
     * @var LoaderInterface $loader
12
     */
13
    protected $loader;
14
15
16
    /**
17
     * RouteFactory constructor.
18
     *
19
     * @param LoaderInterface $loader
20
     */
21
    public function __construct(LoaderInterface $loader)
22
    {
23
        $this->loader = $loader;
24
    }
25
}
26