@@ -89,11 +89,11 @@ |
||
89 | 89 | public function outputTitle(string $title, string $subTitle = '', int $width = 60) : CliApplication |
90 | 90 | { |
91 | 91 | $this->out(str_repeat('-', $width)); |
92 | - $this->out(str_repeat(' ', $width / 2 - (strlen($title) / 2)) . '<title>' . $title . '</title>'); |
|
92 | + $this->out(str_repeat(' ', $width / 2 - (strlen($title) / 2)).'<title>'.$title.'</title>'); |
|
93 | 93 | |
94 | 94 | if ($subTitle) |
95 | 95 | { |
96 | - $this->out(str_repeat(' ', $width / 2 - (strlen($subTitle) / 2)) . '<b>' . $subTitle . '</b>'); |
|
96 | + $this->out(str_repeat(' ', $width / 2 - (strlen($subTitle) / 2)).'<b>'.$subTitle.'</b>'); |
|
97 | 97 | } |
98 | 98 | |
99 | 99 | $this->out(str_repeat('-', $width)); |
@@ -161,7 +161,7 @@ |
||
161 | 161 | */ |
162 | 162 | private function doMigration(string $version) |
163 | 163 | { |
164 | - $sqlFile = 'migrations/' . $version . '.sql'; |
|
164 | + $sqlFile = 'migrations/'.$version.'.sql'; |
|
165 | 165 | |
166 | 166 | if (!$this->filesystem->has($sqlFile)) |
167 | 167 | { |
@@ -68,7 +68,7 @@ |
||
68 | 68 | // Serve cached data if the cache layer is enabled and the raw data source is not requested |
69 | 69 | if ($this->getApplication()->get('cache.enabled', false) && !$authorizedRaw) |
70 | 70 | { |
71 | - $key = md5(get_class($this->view) . __METHOD__ . $source); |
|
71 | + $key = md5(get_class($this->view).__METHOD__.$source); |
|
72 | 72 | |
73 | 73 | if ($this->cache->hasItem($key)) |
74 | 74 | { |