Completed
Pull Request — master (#1)
by Greg
02:17
created

BootstrapAwareTrait   A

Complexity

Total Complexity 2

Size/Duplication

Total Lines 17
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

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

2 Methods

Rating   Name   Duplication   Size   Complexity  
A setBootstrap() 0 4 1
A setBootstrapCurrator() 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 setBootstrapCurrator(BootstrapCurrator $currator)
17
    {
18
        $currator->register($this);
19
    }
20
}
21