Completed
Push — master ( 2887a0...48b899 )
by Derek Stephen
01:37
created

HasViewTrait::getView()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 2
CRAP Score 1

Importance

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