Completed
Pull Request — master (#1)
by Greg
02:18
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 Consolidation\Bootstrap\BootInterface
8
     */
9
    protected $bootstrap;
10
11
    public function setBootstrap(BootInterface $bootstrap)
12
    {
13
        $this->bootstrap = $bootstrap;
0 ignored issues
show
Documentation Bug introduced by
It seems like $bootstrap of type object<Consolidation\Bootstrap\BootInterface> is incompatible with the declared type object<Consolidation\Boo...ootstrap\BootInterface> of property $bootstrap.

Our type inference engine has found an assignment to a property that is incompatible with the declared type of that property.

Either this assignment is in error or the assigned type should be added to the documentation/type hint for that property..

Loading history...
14
    }
15
16
    public function setBootstrapCurrator(BootstrapCurrator $currator)
17
    {
18
        $currator->register($this);
19
    }
20
}
21