@@ -30,7 +30,7 @@ |
||
| 30 | 30 | '\App\Assets\BootstrapAsset' |
| 31 | 31 | ]; |
| 32 | 32 | |
| 33 | - $this->sourcePath = __DIR__ . '/app'; |
|
| 33 | + $this->sourcePath = __DIR__.'/app'; |
|
| 34 | 34 | |
| 35 | 35 | parent::__construct($view); |
| 36 | 36 | } |
@@ -15,7 +15,7 @@ |
||
| 15 | 15 | */ |
| 16 | 16 | public function execute() |
| 17 | 17 | { |
| 18 | - $this->message = 'Hello, world!' . "\n"; |
|
| 18 | + $this->message = 'Hello, world!'."\n"; |
|
| 19 | 19 | $this->result = true; |
| 20 | 20 | } |
| 21 | 21 | } |
@@ -2,10 +2,10 @@ |
||
| 2 | 2 | |
| 3 | 3 | // read components |
| 4 | 4 | $components = []; |
| 5 | -foreach (scandir(__DIR__ . '/components') AS $fileName) { |
|
| 5 | +foreach (scandir(__DIR__.'/components') AS $fileName) { |
|
| 6 | 6 | if ($fileName !== '.' && $fileName !== '..') { |
| 7 | 7 | /** @noinspection PhpIncludeInspection */ |
| 8 | - $components[substr($fileName, 0, -4)] = require __DIR__ . '/components/' . $fileName; |
|
| 8 | + $components[substr($fileName, 0, -4)] = require __DIR__.'/components/'.$fileName; |
|
| 9 | 9 | } |
| 10 | 10 | } |
| 11 | 11 | |