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

HasViewTrait   A

Complexity

Total Complexity 2

Size/Duplication

Total Lines 21
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Test Coverage

Coverage 0%

Importance

Changes 0
Metric Value
wmc 2
lcom 0
cbo 0
dl 0
loc 21
ccs 0
cts 8
cp 0
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
    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
}