Completed
Push — 6.0 ( 1cb63d...28c43f )
by liu
06:59 queued 12s
created
src/think/console/command/make/Listener.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -25,11 +25,11 @@
 block discarded – undo
25 25
 
26 26
     protected function getStub(): string
27 27
     {
28
-        return __DIR__ . DIRECTORY_SEPARATOR . 'stubs' . DIRECTORY_SEPARATOR . 'listener.stub';
28
+        return __DIR__.DIRECTORY_SEPARATOR.'stubs'.DIRECTORY_SEPARATOR.'listener.stub';
29 29
     }
30 30
 
31 31
     protected function getNamespace(string $app): string
32 32
     {
33
-        return parent::getNamespace($app) . '\\listener';
33
+        return parent::getNamespace($app).'\\listener';
34 34
     }
35 35
 }
Please login to merge, or discard this patch.
src/think/console/command/make/Model.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -26,11 +26,11 @@
 block discarded – undo
26 26
 
27 27
     protected function getStub(): string
28 28
     {
29
-        return __DIR__ . DIRECTORY_SEPARATOR . 'stubs' . DIRECTORY_SEPARATOR . 'model.stub';
29
+        return __DIR__.DIRECTORY_SEPARATOR.'stubs'.DIRECTORY_SEPARATOR.'model.stub';
30 30
     }
31 31
 
32 32
     protected function getNamespace(string $app): string
33 33
     {
34
-        return parent::getNamespace($app) . '\\model';
34
+        return parent::getNamespace($app).'\\model';
35 35
     }
36 36
 }
Please login to merge, or discard this patch.
src/think/console/command/make/Service.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -26,11 +26,11 @@
 block discarded – undo
26 26
 
27 27
     protected function getStub(): string
28 28
     {
29
-        return __DIR__ . DIRECTORY_SEPARATOR . 'stubs' . DIRECTORY_SEPARATOR . 'service.stub';
29
+        return __DIR__.DIRECTORY_SEPARATOR.'stubs'.DIRECTORY_SEPARATOR.'service.stub';
30 30
     }
31 31
 
32 32
     protected function getNamespace(string $app): string
33 33
     {
34
-        return parent::getNamespace($app) . '\\service';
34
+        return parent::getNamespace($app).'\\service';
35 35
     }
36 36
 }
Please login to merge, or discard this patch.
src/think/console/command/make/Middleware.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -26,7 +26,7 @@
 block discarded – undo
26 26
 
27 27
     protected function getStub(): string
28 28
     {
29
-        return __DIR__ . DIRECTORY_SEPARATOR . 'stubs' . DIRECTORY_SEPARATOR . 'middleware.stub';
29
+        return __DIR__.DIRECTORY_SEPARATOR.'stubs'.DIRECTORY_SEPARATOR.'middleware.stub';
30 30
     }
31 31
 
32 32
     protected function getNamespace(string $app): string
Please login to merge, or discard this patch.
src/think/console/command/make/Subscribe.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -25,11 +25,11 @@
 block discarded – undo
25 25
 
26 26
     protected function getStub(): string
27 27
     {
28
-        return __DIR__ . DIRECTORY_SEPARATOR . 'stubs' . DIRECTORY_SEPARATOR . 'subscribe.stub';
28
+        return __DIR__.DIRECTORY_SEPARATOR.'stubs'.DIRECTORY_SEPARATOR.'subscribe.stub';
29 29
     }
30 30
 
31 31
     protected function getNamespace(string $app): string
32 32
     {
33
-        return parent::getNamespace($app) . '\\subscribe';
33
+        return parent::getNamespace($app).'\\subscribe';
34 34
     }
35 35
 }
Please login to merge, or discard this patch.
src/think/console/command/make/Event.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -25,11 +25,11 @@
 block discarded – undo
25 25
 
26 26
     protected function getStub(): string
27 27
     {
28
-        return __DIR__ . DIRECTORY_SEPARATOR . 'stubs' . DIRECTORY_SEPARATOR . 'event.stub';
28
+        return __DIR__.DIRECTORY_SEPARATOR.'stubs'.DIRECTORY_SEPARATOR.'event.stub';
29 29
     }
30 30
 
31 31
     protected function getNamespace(string $app): string
32 32
     {
33
-        return parent::getNamespace($app) . '\\event';
33
+        return parent::getNamespace($app).'\\event';
34 34
     }
35 35
 }
Please login to merge, or discard this patch.
src/think/console/command/make/Controller.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -30,27 +30,27 @@
 block discarded – undo
30 30
 
31 31
     protected function getStub(): string
32 32
     {
33
-        $stubPath = __DIR__ . DIRECTORY_SEPARATOR . 'stubs' . DIRECTORY_SEPARATOR;
33
+        $stubPath = __DIR__.DIRECTORY_SEPARATOR.'stubs'.DIRECTORY_SEPARATOR;
34 34
 
35 35
         if ($this->input->getOption('api')) {
36
-            return $stubPath . 'controller.api.stub';
36
+            return $stubPath.'controller.api.stub';
37 37
         }
38 38
 
39 39
         if ($this->input->getOption('plain')) {
40
-            return $stubPath . 'controller.plain.stub';
40
+            return $stubPath.'controller.plain.stub';
41 41
         }
42 42
 
43
-        return $stubPath . 'controller.stub';
43
+        return $stubPath.'controller.stub';
44 44
     }
45 45
 
46 46
     protected function getClassName(string $name): string
47 47
     {
48
-        return parent::getClassName($name) . ($this->app->config->get('route.controller_suffix') ? 'Controller' : '');
48
+        return parent::getClassName($name).($this->app->config->get('route.controller_suffix') ? 'Controller' : '');
49 49
     }
50 50
 
51 51
     protected function getNamespace(string $app): string
52 52
     {
53
-        return parent::getNamespace($app) . '\\controller';
53
+        return parent::getNamespace($app).'\\controller';
54 54
     }
55 55
 
56 56
 }
Please login to merge, or discard this patch.
src/think/console/command/RunServer.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -8,7 +8,7 @@  discard block
 block discarded – undo
8 8
 // +----------------------------------------------------------------------
9 9
 // | Author: Slince <[email protected]>
10 10
 // +----------------------------------------------------------------------
11
-declare (strict_types = 1);
11
+declare(strict_types=1);
12 12
 
13 13
 namespace think\console\command;
14 14
 
@@ -37,7 +37,7 @@  discard block
 block discarded – undo
37 37
         $port = $input->getOption('port');
38 38
         $root = $input->getOption('root');
39 39
         if (empty($root)) {
40
-            $root = $this->app->getRootPath() . 'public';
40
+            $root = $this->app->getRootPath().'public';
41 41
         }
42 42
 
43 43
         $command = sprintf(
@@ -45,7 +45,7 @@  discard block
 block discarded – undo
45 45
             $host,
46 46
             $port,
47 47
             escapeshellarg($root),
48
-            escapeshellarg($root . DIRECTORY_SEPARATOR . 'router.php')
48
+            escapeshellarg($root.DIRECTORY_SEPARATOR.'router.php')
49 49
         );
50 50
 
51 51
         $output->writeln(sprintf('ThinkPHP Development server is started On <http://%s:%s/>', '0.0.0.0' == $host ? '127.0.0.1' : $host, $port));
Please login to merge, or discard this patch.
src/think/console/command/VendorPublish.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -8,7 +8,7 @@  discard block
 block discarded – undo
8 8
 // +----------------------------------------------------------------------
9 9
 // | Author: yunwuxin <[email protected]>
10 10
 // +----------------------------------------------------------------------
11
-declare (strict_types = 1);
11
+declare(strict_types=1);
12 12
 
13 13
 namespace think\console\command;
14 14
 
@@ -29,7 +29,7 @@  discard block
 block discarded – undo
29 29
 
30 30
         $force = $this->input->getOption('force');
31 31
 
32
-        if (is_file($path = $this->app->getRootPath() . 'vendor/composer/installed.json')) {
32
+        if (is_file($path = $this->app->getRootPath().'vendor/composer/installed.json')) {
33 33
             $packages = json_decode(@file_get_contents($path), true);
34 34
 
35 35
             foreach ($packages as $package) {
@@ -38,12 +38,12 @@  discard block
 block discarded – undo
38 38
 
39 39
                 if (!empty($package['extra']['think']['config'])) {
40 40
 
41
-                    $installPath = $this->app->getRootPath() . 'vendor/' . $package['name'] . DIRECTORY_SEPARATOR;
41
+                    $installPath = $this->app->getRootPath().'vendor/'.$package['name'].DIRECTORY_SEPARATOR;
42 42
 
43 43
                     foreach ((array) $package['extra']['think']['config'] as $name => $file) {
44 44
 
45
-                        $target = $configDir . $name . '.php';
46
-                        $source = $installPath . $file;
45
+                        $target = $configDir.$name.'.php';
46
+                        $source = $installPath.$file;
47 47
 
48 48
                         if (is_file($target) && !$force) {
49 49
                             $this->output->info("File {$target} exist!");
Please login to merge, or discard this patch.