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

BootstrapAwareTrait::setBootstrapCurrator()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 1
Metric Value
c 1
b 0
f 1
dl 0
loc 4
rs 10
cc 1
eloc 2
nc 1
nop 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