Completed
Push — master ( f6cc4f...20183c )
by Andrii
03:46
created

Component::render()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 8
Code Lines 6

Duplication

Lines 8
Ratio 100 %

Code Coverage

Tests 0
CRAP Score 2

Importance

Changes 0
Metric Value
dl 8
loc 8
ccs 0
cts 6
cp 0
rs 9.4285
c 0
b 0
f 0
cc 1
eloc 6
nc 1
nop 2
crap 2
1
<?php
2
/**
3
 * Automation tool mixed with code generator for easier continuous development
4
 *
5
 * @link      https://github.com/hiqdev/hidev
6
 * @package   hidev
7
 * @license   BSD-3-Clause
8
 * @copyright Copyright (c) 2015-2018, HiQDev (http://hiqdev.com/)
9
 */
10
11
namespace hidev\base;
12
13
use ReflectionClass;
14
use Yii;
15
use yii\base\ViewContextInterface;
16
17
/**
18
 * Base for components.
19
 */
20 View Code Duplication
class Component extends \yii\base\Component implements ViewContextInterface
0 ignored issues
show
Duplication introduced by
This class seems to be duplicated in your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
21
{
22
    use GettersTrait;
23
24
    public function render($view, $params = [])
25
    {
26
        return Yii::$app->getView()->render($view, array_merge([
27
            'app' => Yii::$app,
28
            'config' => Yii::$app,
29
            'component' => $this,
30
        ], $params), $this);
31
    }
32
33
    public function getViewPath()
34
    {
35
        $ref = new ReflectionClass($this);
36
37
        return dirname(dirname($ref->getFileName())) . '/views';
38
    }
39
}
40