BootstrapAwareTrait   A
last analyzed

Complexity

Total Complexity 2

Size/Duplication

Total Lines 17
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

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

2 Methods

Rating   Name   Duplication   Size   Complexity  
A setBootstrap() 0 4 1
A setBootstrapCurator() 0 4 1
1
<?php
2
namespace Consolidation\Bootstrap;
3
4
trait BootstrapAwareTrait
5
{
6
    /**
7
     * @var BootInterface
8
     */
9
    protected $bootstrap;
10
11
    public function setBootstrap(BootInterface $bootstrap)
12
    {
13
        $this->bootstrap = $bootstrap;
14
    }
15
16
    public function setBootstrapCurator(BootstrapCurator $curator)
17
    {
18
        $curator->register($this);
19
    }
20
}
21