Passed
Push — master ( 0e5a66...620416 )
by Rougin
12:10
created

View::accessor()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 0
CRAP Score 2

Importance

Changes 0
Metric Value
dl 0
loc 3
c 0
b 0
f 0
ccs 0
cts 3
cp 0
rs 10
cc 1
eloc 1
nc 1
nop 0
crap 2
1
<?php
2
3
namespace App\Facades;
4
5
use Zapheus\Renderer\RendererInterface;
6
7
/**
8
 * View Facade
9
 *
10
 * @package App
11
 * @author  Rougin Royce Gutib <[email protected]>
12
 *
13
 * @method string render(string $template, array $data = array())
14
 */
15
class View extends Facade
16
{
17
    /**
18
     * Returns the registered name of the instance.
19
     *
20
     * @return string
21
     */
22
    protected static function accessor()
23
    {
24
        return 'Zapheus\Renderer\RendererInterface';
25
    }
26
}
27