Completed
Push — 6.0 ( 9db11b...892b87 )
by yun
06:42
created
src/think/console/command/Clear.php 1 patch
Spacing   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -38,18 +38,18 @@  discard block
 block discarded – undo
38 38
             $this->app->cache->clear('route_cache');
39 39
         } else {
40 40
             $app         = $input->getArgument('app');
41
-            $runtimePath = $this->app->getRootPath() . 'runtime' . DIRECTORY_SEPARATOR . ($app ? $app . DIRECTORY_SEPARATOR : '');
41
+            $runtimePath = $this->app->getRootPath().'runtime'.DIRECTORY_SEPARATOR.($app ? $app.DIRECTORY_SEPARATOR : '');
42 42
 
43 43
             if ($input->getOption('cache')) {
44
-                $path = $runtimePath . 'cache';
44
+                $path = $runtimePath.'cache';
45 45
             } elseif ($input->getOption('log')) {
46
-                $path = $runtimePath . 'log';
46
+                $path = $runtimePath.'log';
47 47
             } else {
48 48
                 $path = $input->getOption('path') ?: $runtimePath;
49 49
             }
50 50
 
51 51
             $rmdir = $input->getOption('dir') ? true : false;
52
-            $this->clear(rtrim($path, DIRECTORY_SEPARATOR) . DIRECTORY_SEPARATOR, $rmdir);
52
+            $this->clear(rtrim($path, DIRECTORY_SEPARATOR).DIRECTORY_SEPARATOR, $rmdir);
53 53
         }
54 54
 
55 55
         $output->writeln("<info>Clear Successed</info>");
@@ -60,13 +60,13 @@  discard block
 block discarded – undo
60 60
         $files = is_dir($path) ? scandir($path) : [];
61 61
 
62 62
         foreach ($files as $file) {
63
-            if ('.' != $file && '..' != $file && is_dir($path . $file)) {
64
-                array_map('unlink', glob($path . $file . DIRECTORY_SEPARATOR . '*.*'));
63
+            if ('.' != $file && '..' != $file && is_dir($path.$file)) {
64
+                array_map('unlink', glob($path.$file.DIRECTORY_SEPARATOR.'*.*'));
65 65
                 if ($rmdir) {
66
-                    rmdir($path . $file);
66
+                    rmdir($path.$file);
67 67
                 }
68
-            } elseif ('.gitignore' != $file && is_file($path . $file)) {
69
-                unlink($path . $file);
68
+            } elseif ('.gitignore' != $file && is_file($path.$file)) {
69
+                unlink($path.$file);
70 70
             }
71 71
         }
72 72
     }
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.
src/think/Event.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -8,7 +8,7 @@  discard block
 block discarded – undo
8 8
 // +----------------------------------------------------------------------
9 9
 // | Author: liu21st <[email protected]>
10 10
 // +----------------------------------------------------------------------
11
-declare (strict_types = 1);
11
+declare(strict_types=1);
12 12
 
13 13
 namespace think;
14 14
 
@@ -214,7 +214,7 @@  discard block
 block discarded – undo
214 214
 
215 215
         foreach ($events as $event) {
216 216
             $name   = false !== strpos($event, '\\') ? substr(strrchr($event, '\\'), 1) : $event;
217
-            $method = 'on' . $name;
217
+            $method = 'on'.$name;
218 218
 
219 219
             if (method_exists($observer, $method)) {
220 220
                 $this->listen($event, [$observer, $method]);
Please login to merge, or discard this patch.
tests/DbTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@
 block discarded – undo
22 22
      */
23 23
     public function testConnect($config)
24 24
     {
25
-        $mysql = m::mock('overload:' . Mysql::class);
25
+        $mysql = m::mock('overload:'.Mysql::class);
26 26
 
27 27
         $db = new Db($config);
28 28
     }
Please login to merge, or discard this patch.
tests/AppTest.php 1 patch
Spacing   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -107,27 +107,27 @@  discard block
 block discarded – undo
107 107
 
108 108
     public function testPath()
109 109
     {
110
-        $rootPath = __DIR__ . DIRECTORY_SEPARATOR;
110
+        $rootPath = __DIR__.DIRECTORY_SEPARATOR;
111 111
 
112 112
         $app = new App($rootPath);
113 113
 
114 114
         $this->assertEquals($rootPath, $app->getRootPath());
115 115
 
116
-        $this->assertEquals(dirname(__DIR__) . DIRECTORY_SEPARATOR . 'src' . DIRECTORY_SEPARATOR, $app->getThinkPath());
116
+        $this->assertEquals(dirname(__DIR__).DIRECTORY_SEPARATOR.'src'.DIRECTORY_SEPARATOR, $app->getThinkPath());
117 117
 
118
-        $this->assertEquals($rootPath . 'app' . DIRECTORY_SEPARATOR, $app->getAppPath());
118
+        $this->assertEquals($rootPath.'app'.DIRECTORY_SEPARATOR, $app->getAppPath());
119 119
 
120
-        $appPath = $rootPath . 'app' . DIRECTORY_SEPARATOR . 'admin' . DIRECTORY_SEPARATOR;
120
+        $appPath = $rootPath.'app'.DIRECTORY_SEPARATOR.'admin'.DIRECTORY_SEPARATOR;
121 121
         $app->setAppPath($appPath);
122 122
         $this->assertEquals($appPath, $app->getAppPath());
123 123
 
124
-        $this->assertEquals($rootPath . 'app' . DIRECTORY_SEPARATOR, $app->getBasePath());
124
+        $this->assertEquals($rootPath.'app'.DIRECTORY_SEPARATOR, $app->getBasePath());
125 125
 
126
-        $this->assertEquals($rootPath . 'config' . DIRECTORY_SEPARATOR, $app->getConfigPath());
126
+        $this->assertEquals($rootPath.'config'.DIRECTORY_SEPARATOR, $app->getConfigPath());
127 127
 
128
-        $this->assertEquals($rootPath . 'runtime' . DIRECTORY_SEPARATOR, $app->getRuntimePath());
128
+        $this->assertEquals($rootPath.'runtime'.DIRECTORY_SEPARATOR, $app->getRuntimePath());
129 129
 
130
-        $runtimePath = $rootPath . 'runtime' . DIRECTORY_SEPARATOR . 'admin' . DIRECTORY_SEPARATOR;
130
+        $runtimePath = $rootPath.'runtime'.DIRECTORY_SEPARATOR.'admin'.DIRECTORY_SEPARATOR;
131 131
         $app->setRuntimePath($runtimePath);
132 132
         $this->assertEquals($runtimePath, $app->getRuntimePath());
133 133
     }
@@ -139,7 +139,7 @@  discard block
 block discarded – undo
139 139
      */
140 140
     protected function prepareAppForInitialize(vfsStreamDirectory $root, $debug = true)
141 141
     {
142
-        $rootPath = $root->url() . DIRECTORY_SEPARATOR;
142
+        $rootPath = $root->url().DIRECTORY_SEPARATOR;
143 143
 
144 144
         $app = new App($rootPath);
145 145
 
@@ -148,12 +148,12 @@  discard block
 block discarded – undo
148 148
 
149 149
         $app->instance($initializer->mockery_getName(), $initializer);
150 150
 
151
-        (function () use ($initializer) {
151
+        (function() use ($initializer) {
152 152
             $this->initializers = [$initializer->mockery_getName()];
153 153
         })->call($app);
154 154
 
155 155
         $env = m::mock(Env::class);
156
-        $env->shouldReceive('load')->once()->with($rootPath . '.env');
156
+        $env->shouldReceive('load')->once()->with($rootPath.'.env');
157 157
         $env->shouldReceive('get')->once()->with('config_ext', '.php')->andReturn('.php');
158 158
         $env->shouldReceive('get')->once()->with('app_debug')->andReturn($debug);
159 159
 
Please login to merge, or discard this patch.
tests/HttpTest.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -48,7 +48,7 @@  discard block
 block discarded – undo
48 48
 
49 49
         $route = m::mock(Route::class);
50 50
 
51
-        $route->shouldReceive('dispatch')->withArgs(function ($req, $withRoute) use ($request) {
51
+        $route->shouldReceive('dispatch')->withArgs(function($req, $withRoute) use ($request) {
52 52
             if ($withRoute) {
53 53
                 $withRoute();
54 54
             }
@@ -80,8 +80,8 @@  discard block
 block discarded – undo
80 80
 
81 81
         $this->http->multi(false);
82 82
 
83
-        $this->app->shouldReceive('getBasePath')->andReturn($root->getChild('app')->url() . DIRECTORY_SEPARATOR);
84
-        $this->app->shouldReceive('getRootPath')->andReturn($root->url() . DIRECTORY_SEPARATOR);
83
+        $this->app->shouldReceive('getBasePath')->andReturn($root->getChild('app')->url().DIRECTORY_SEPARATOR);
84
+        $this->app->shouldReceive('getRootPath')->andReturn($root->url().DIRECTORY_SEPARATOR);
85 85
 
86 86
         $request  = m::mock(Request::class)->makePartial();
87 87
         $response = m::mock(Response::class)->makePartial();
@@ -140,9 +140,9 @@  discard block
 block discarded – undo
140 140
 
141 141
         $this->app->shouldReceive('get')->with('config')->andReturn($config);
142 142
 
143
-        $this->app->shouldReceive('getBasePath')->andReturn($root->getChild('app')->url() . DIRECTORY_SEPARATOR);
144
-        $this->app->shouldReceive('getRootPath')->andReturn($root->url() . DIRECTORY_SEPARATOR);
145
-        $this->app->shouldReceive('getConfigPath')->andReturn($root->getChild('config')->url() . DIRECTORY_SEPARATOR);
143
+        $this->app->shouldReceive('getBasePath')->andReturn($root->getChild('app')->url().DIRECTORY_SEPARATOR);
144
+        $this->app->shouldReceive('getRootPath')->andReturn($root->url().DIRECTORY_SEPARATOR);
145
+        $this->app->shouldReceive('getConfigPath')->andReturn($root->getChild('config')->url().DIRECTORY_SEPARATOR);
146 146
 
147 147
         $response = m::mock(Response::class)->makePartial();
148 148
 
@@ -174,7 +174,7 @@  discard block
 block discarded – undo
174 174
             $this->assertTrue($this->http->isBindDomain());
175 175
         }
176 176
         if ($path) {
177
-            $this->assertEquals(rtrim($path, DIRECTORY_SEPARATOR) . DIRECTORY_SEPARATOR, $this->app->getAppPath());
177
+            $this->assertEquals(rtrim($path, DIRECTORY_SEPARATOR).DIRECTORY_SEPARATOR, $this->app->getAppPath());
178 178
         }
179 179
     }
180 180
 
Please login to merge, or discard this patch.
src/think/middleware/FormTokenCheck.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -8,7 +8,7 @@
 block discarded – undo
8 8
 // +----------------------------------------------------------------------
9 9
 // | Author: liu21st <[email protected]>
10 10
 // +----------------------------------------------------------------------
11
-declare (strict_types = 1);
11
+declare(strict_types=1);
12 12
 
13 13
 namespace think\middleware;
14 14
 
Please login to merge, or discard this patch.
src/think/middleware/AllowCrossDomain.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -8,7 +8,7 @@
 block discarded – undo
8 8
 // +----------------------------------------------------------------------
9 9
 // | Author: liu21st <[email protected]>
10 10
 // +----------------------------------------------------------------------
11
-declare (strict_types = 1);
11
+declare(strict_types=1);
12 12
 
13 13
 namespace think\middleware;
14 14
 
Please login to merge, or discard this patch.