@@ -23,7 +23,7 @@ |
||
23 | 23 | */ |
24 | 24 | public function renderType($data) |
25 | 25 | { |
26 | - return Json::encode($data, JSON_UNESCAPED_SLASHES | JSON_UNESCAPED_UNICODE | JSON_PRETTY_PRINT) . "\n"; |
|
26 | + return Json::encode($data, JSON_UNESCAPED_SLASHES | JSON_UNESCAPED_UNICODE | JSON_PRETTY_PRINT)."\n"; |
|
27 | 27 | } |
28 | 28 | |
29 | 29 | /** |
@@ -48,7 +48,7 @@ discard block |
||
48 | 48 | $res = ''; |
49 | 49 | foreach ($comments as $comment => $items) { |
50 | 50 | ksort($items); |
51 | - $res .= static::renderComment($comment) . implode("\n", $items) . "\n"; |
|
51 | + $res .= static::renderComment($comment).implode("\n", $items)."\n"; |
|
52 | 52 | } |
53 | 53 | |
54 | 54 | return ltrim($res); |
@@ -56,6 +56,6 @@ discard block |
||
56 | 56 | |
57 | 57 | public static function renderComment($comment) |
58 | 58 | { |
59 | - return "\n#" . ($comment[0] === '#' ? '' : ' ') . "$comment\n"; |
|
59 | + return "\n#".($comment[0] === '#' ? '' : ' ')."$comment\n"; |
|
60 | 60 | } |
61 | 61 | } |
@@ -20,7 +20,7 @@ |
||
20 | 20 | { |
21 | 21 | $a = pathinfo($template); |
22 | 22 | |
23 | - return $a['dirname'] . '/' . $a['filename'] . $extension; |
|
23 | + return $a['dirname'].'/'.$a['filename'].$extension; |
|
24 | 24 | } |
25 | 25 | |
26 | 26 | public function actionPerform($template = null, $file = null) |
@@ -32,7 +32,7 @@ |
||
32 | 32 | |
33 | 33 | public function getTitleAndHomepage() |
34 | 34 | { |
35 | - return $this->title . ($this->homepage ? ' (' . $this->homepage . ')' : ''); |
|
35 | + return $this->title.($this->homepage ? ' ('.$this->homepage.')' : ''); |
|
36 | 36 | } |
37 | 37 | |
38 | 38 | public function getDescription() |
@@ -24,7 +24,7 @@ |
||
24 | 24 | public function renderPath($path, $data) |
25 | 25 | { |
26 | 26 | copy($data->getCopy(), $path); |
27 | - Yii::warning('Copied file: ' . $path); |
|
27 | + Yii::warning('Copied file: '.$path); |
|
28 | 28 | } |
29 | 29 | |
30 | 30 | /** |
@@ -65,14 +65,14 @@ discard block |
||
65 | 65 | { |
66 | 66 | $command = $this->getCommand(); |
67 | 67 | if (is_string($args)) { |
68 | - return $command . ' ' . trim($args); |
|
68 | + return $command.' '.trim($args); |
|
69 | 69 | } |
70 | 70 | |
71 | 71 | foreach ($args as $arg) { |
72 | 72 | if ($arg instanceof ModifierInterface) { |
73 | 73 | $command = $arg->modify($command); |
74 | 74 | } else { |
75 | - $command .= ' ' . escapeshellarg($arg); |
|
75 | + $command .= ' '.escapeshellarg($arg); |
|
76 | 76 | } |
77 | 77 | } |
78 | 78 | |
@@ -81,7 +81,7 @@ discard block |
||
81 | 81 | |
82 | 82 | public function install() |
83 | 83 | { |
84 | - throw new InvalidConfigException('Don\'t know how to install ' . $this->name); |
|
84 | + throw new InvalidConfigException('Don\'t know how to install '.$this->name); |
|
85 | 85 | } |
86 | 86 | |
87 | 87 | /** |
@@ -113,7 +113,7 @@ discard block |
||
113 | 113 | */ |
114 | 114 | public function detectPath($name) |
115 | 115 | { |
116 | - return exec('which ' . $name) ?: null; |
|
116 | + return exec('which '.$name) ?: null; |
|
117 | 117 | } |
118 | 118 | |
119 | 119 | /** |
@@ -148,7 +148,7 @@ discard block |
||
148 | 148 | $path = $this->getPath(); |
149 | 149 | } |
150 | 150 | if (!$path || !file_exists($path)) { |
151 | - throw new InvalidConfigException('Failed to find how to run ' . $this->name); |
|
151 | + throw new InvalidConfigException('Failed to find how to run '.$this->name); |
|
152 | 152 | } |
153 | 153 | |
154 | 154 | return $path; |
@@ -36,7 +36,7 @@ |
||
36 | 36 | foreach ($commands as $command) { |
37 | 37 | $command = trim($command); |
38 | 38 | if ($command) { |
39 | - passthru(($this->sudo ? 'sudo ' : '') . $command); |
|
39 | + passthru(($this->sudo ? 'sudo ' : '').$command); |
|
40 | 40 | } |
41 | 41 | } |
42 | 42 | } |
@@ -15,6 +15,6 @@ |
||
15 | 15 | { |
16 | 16 | public function modify($command) |
17 | 17 | { |
18 | - return 'sudo ' . $command; |
|
18 | + return 'sudo '.$command; |
|
19 | 19 | } |
20 | 20 | } |
@@ -14,7 +14,7 @@ |
||
14 | 14 | 'name' => 'HiDev', |
15 | 15 | 'basePath' => dirname(__DIR__), |
16 | 16 | 'vendorPath' => HIDEV_VENDOR_DIR, |
17 | - 'runtimePath' => substr(__DIR__, 0, 7) === 'phar://' ? dirname($_SERVER['SCRIPT_NAME']) : dirname(HIDEV_VENDOR_DIR) . '/runtime', |
|
17 | + 'runtimePath' => substr(__DIR__, 0, 7) === 'phar://' ? dirname($_SERVER['SCRIPT_NAME']) : dirname(HIDEV_VENDOR_DIR).'/runtime', |
|
18 | 18 | 'enableCoreCommands' => false, |
19 | 19 | 'controllerNamespace' => 'hidev\\controllers', |
20 | 20 | 'defaultRoute' => 'default', |