Passed
Push — master ( 620416...a29fb4 )
by Rougin
02:02
created

View   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 10
Duplicated Lines 0 %

Test Coverage

Coverage 100%

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A accessor() 0 3 1
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 9
    protected static function accessor()
23
    {
24 9
        return 'Zapheus\Renderer\RendererInterface';
25
    }
26
}
27