Completed
Push — master ( 2a2488...b1da4b )
by Oleg
10:17
created
app/assets/AppAsset.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@
 block discarded – undo
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
     }
Please login to merge, or discard this patch.
app/consoles/UserCleanerConsoleCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@
 block discarded – undo
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
 }
Please login to merge, or discard this patch.
app/configs/index.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -2,10 +2,10 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.