Completed
Push — dev-master ( 37b687...4cdff6 )
by Derek Stephen
55s
created

HasViewTrait::setView()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 3
CRAP Score 1

Importance

Changes 0
Metric Value
dl 0
loc 4
ccs 3
cts 3
cp 1
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 1
crap 1
1
<?php
2
3
namespace Bone\Traits;
4
5
use Bone\Mvc\Controller\ViewAwareInterface;
6
use Bone\Mvc\View\PlatesEngine;
7
8
trait HasViewTrait
9
{
10
    /** @var PlatesEngine $view */
11
    protected $view;
12
13
    /**
14
     * @param PlatesEngine $view
15
     */
16 2
    public function setView(PlatesEngine $view): void
17
    {
18 2
        $this->view = $view;
19 2
    }
20
21
    /**
22
     * @return PlatesEngine
23
     */
24 2
    public function getView(): PlatesEngine
25
    {
26 2
        return $this->view;
27
    }
28
}