Completed
Push — master ( abdd73...5e1e76 )
by Greg
01:58
created

BootstrapAwareTrait   A

Complexity

Total Complexity 2

Size/Duplication

Total Lines 17
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

Changes 3
Bugs 1 Features 1
Metric Value
wmc 2
c 3
b 1
f 1
lcom 0
cbo 1
dl 0
loc 17
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