Completed
Push — master ( 92266b...24ccf8 )
by Derek Stephen
51s
created

HasViewTrait::setView()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 0
CRAP Score 2

Importance

Changes 0
Metric Value
dl 0
loc 4
ccs 0
cts 4
cp 0
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 1
crap 2
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
    public function setView(PlatesEngine $view): void
17
    {
18
        $this->view = $view;
19
    }
20
21
    /**
22
     * @return PlatesEngine
23
     */
24
    public function getView(): PlatesEngine
25
    {
26
        return $this->view;
27
    }
28
}