HiSiteController::setDebug()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 0
CRAP Score 2

Importance

Changes 0
Metric Value
dl 0
loc 4
ccs 0
cts 3
cp 0
rs 10
c 0
b 0
f 0
cc 1
eloc 2
nc 1
nop 1
crap 2
1
<?php
2
/**
3
 * HiDev config for HiSite
4
 *
5
 * @link      https://github.com/hiqdev/hidev-hisite
6
 * @package   hidev-hisite
7
 * @license   BSD-3-Clause
8
 * @copyright Copyright (c) 2016-2017, HiQDev (http://hiqdev.com/)
9
 */
10
11
namespace hidev\hisite\controllers;
12
13
/**
14
 * Goal for HiSite.
15
 */
16
class HiSiteController extends \hidev\controllers\DirectoryController
17
{
18
    protected $_env;
19
    protected $_debug;
20
    protected $_defines = [];
21
    protected $_nginx;
22
    protected $_vhost;
23
24
    public function setEnv($value)
25
    {
26
        $this->_env = $value;
27
    }
28
29 1
    public function getEnv()
30
    {
31 1
        if ($this->_env === null) {
32 1
            $this->_env = 'prod';
33 1
        }
34
35 1
        return $this->_env;
36
    }
37
38
    public function setDebug($value)
39
    {
40
        $this->_debug = $value;
41
    }
42
43 1
    public function getDebug()
44
    {
45 1
        if ($this->_debug === null) {
46 1
            $this->_debug = ($this->getEnv() === 'dev');
47 1
        }
48
49 1
        return $this->_debug;
50
    }
51
52 1
    public function setDefines(array $hash)
53
    {
54
        $defaults = [
55 1
            'YII_ENV'   => $this->getEnv(),
56 1
            'YII_DEBUG' => $this->getDebug(),
57 1
        ];
58 1
        $this->_defines = array_merge($this->_defines, $defaults, $hash);
59 1
    }
60
61 1
    public function getDefines()
62
    {
63 1
        if (empty($this->_defines)) {
64 1
            $this->setDefines([]);
65 1
        }
66
67 1
        return $this->_defines;
68
    }
69
70
    public function getNginx()
71
    {
72
        if ($this->_nginx === null) {
73
            $this->_nginx = $this->takeGoal('nginx');
74
        }
75
76
        return $this->_nginx;
77
    }
78
79
    public function getVhost()
80
    {
81
        if ($this->_vhost === null) {
82
            $this->_vhost = $this->getNginx()->get('default');
83
        }
84
85
        return $this->_vhost;
86
    }
87
88
    public function setVhost(array $params)
89
    {
90
        foreach ($params as $key => $value) {
91
            $this->getVhost()->{$key} = $value;
92
        }
93
    }
94
}
95