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

HasViewTrait   A

Complexity

Total Complexity 2

Size/Duplication

Total Lines 21
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Test Coverage

Coverage 100%

Importance

Changes 0
Metric Value
wmc 2
lcom 0
cbo 0
dl 0
loc 21
ccs 5
cts 5
cp 1
rs 10
c 0
b 0
f 0

2 Methods

Rating   Name   Duplication   Size   Complexity  
A setView() 0 4 1
A getView() 0 4 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
}