@@ -63,7 +63,7 @@ |
||
63 | 63 | public function getWebroot() |
64 | 64 | { |
65 | 65 | if ($this->_webroot === null) { |
66 | - $this->_webroot = realpath(realpath($this->basePath) . DIRECTORY_SEPARATOR . $this->webrootDirectory); |
|
66 | + $this->_webroot = realpath(realpath($this->basePath).DIRECTORY_SEPARATOR.$this->webrootDirectory); |
|
67 | 67 | } |
68 | 68 | |
69 | 69 | return $this->_webroot; |
@@ -41,7 +41,7 @@ |
||
41 | 41 | { |
42 | 42 | $info = pathinfo($file); |
43 | 43 | if (!isset($info['extension']) || empty($info['extension'])) { |
44 | - $file = rtrim($file, '.') . '.' . $extension; |
|
44 | + $file = rtrim($file, '.').'.'.$extension; |
|
45 | 45 | } |
46 | 46 | |
47 | 47 | return $file; |
@@ -104,8 +104,8 @@ |
||
104 | 104 | case 'model': |
105 | 105 | |
106 | 106 | if (!$extended) { |
107 | - $modelName = $modelName . 'NgRest'; |
|
108 | - $item['file'] = $modelName . '.php'; |
|
107 | + $modelName = $modelName.'NgRest'; |
|
108 | + $item['file'] = $modelName.'.php'; |
|
109 | 109 | $item['class'] = $modelName; |
110 | 110 | } |
111 | 111 |
@@ -19,5 +19,5 @@ |
||
19 | 19 | /** |
20 | 20 | * @var string $modelClass The path to the model which is the provider for the rules and fields. |
21 | 21 | */ |
22 | - public $modelClass = '<?= $modelClass;?>'; |
|
22 | + public $modelClass = '<?= $modelClass; ?>'; |
|
23 | 23 | } |
@@ -19,5 +19,5 @@ |
||
19 | 19 | /** |
20 | 20 | * @var string $modelClass The path to the model which is the provider for the rules and fields. |
21 | 21 | */ |
22 | - public $modelClass = '<?= $modelClass;?>'; |
|
22 | + public $modelClass = '<?= $modelClass; ?>'; |
|
23 | 23 | } |
@@ -50,9 +50,9 @@ |
||
50 | 50 | foreach ($array as $k => $v) { |
51 | 51 | if (is_numeric($v)) { |
52 | 52 | if (is_float($v)) { |
53 | - $return[$k] = (float)$v; |
|
53 | + $return[$k] = (float) $v; |
|
54 | 54 | } else { |
55 | - $return[$k] = (int)$v; |
|
55 | + $return[$k] = (int) $v; |
|
56 | 56 | } |
57 | 57 | } elseif (is_array($v)) { |
58 | 58 | $return[$k] = self::typeCast($v); |
@@ -68,9 +68,9 @@ |
||
68 | 68 | $_file = $exception->getFile(); |
69 | 69 | $_line = $exception->getLine(); |
70 | 70 | } elseif (is_string($exception)) { |
71 | - $_message = 'exception string: ' . $exception; |
|
71 | + $_message = 'exception string: '.$exception; |
|
72 | 72 | } elseif (is_array($exception)) { |
73 | - $_message = 'exception array dump: ' . print_r($exception, true); |
|
73 | + $_message = 'exception array dump: '.print_r($exception, true); |
|
74 | 74 | } |
75 | 75 | |
76 | 76 | return [ |
@@ -75,7 +75,7 @@ |
||
75 | 75 | $name = substr($name, 0, -(strlen($suffix))); |
76 | 76 | } |
77 | 77 | |
78 | - return $name . $suffix; |
|
78 | + return $name.$suffix; |
|
79 | 79 | } |
80 | 80 | |
81 | 81 | /** |
@@ -17,7 +17,7 @@ |
||
17 | 17 | public function verbosePrint($message, $section = null) |
18 | 18 | { |
19 | 19 | if ($this->verbose) { |
20 | - $this->output((!empty($section)) ? $section . ': ' . $message : $message); |
|
20 | + $this->output((!empty($section)) ? $section.': '.$message : $message); |
|
21 | 21 | } |
22 | 22 | } |
23 | 23 |