Passed
Push — master ( e71b36...8a2cc4 )
by 世昌
02:31
created
suda/src/framework/debug/DebugObject.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -68,13 +68,13 @@
 block discarded – undo
68 68
             );
69 69
             $exported = [];
70 70
             foreach ($props as $value) {
71
-                $name = dechex($value->getModifiers()) . '$' . $value->getName();
71
+                $name = dechex($value->getModifiers()).'$'.$value->getName();
72 72
                 $value->setAccessible(true);
73 73
                 $exported[$name] = new DebugObject($value->getValue($object), $this->context);
74 74
             }
75 75
             return $exported;
76 76
         } catch (\ReflectionException $e) {
77
-            return 'Err:' . $e->getMessage();
77
+            return 'Err:'.$e->getMessage();
78 78
         }
79 79
     }
80 80
 
Please login to merge, or discard this patch.
suda/src/framework/config/PathResolver.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -11,21 +11,21 @@  discard block
 block discarded – undo
11 11
      * @param string $path
12 12
      * @return string|null
13 13
      */
14
-    public static function resolve(string $path):?string
14
+    public static function resolve(string $path): ?string
15 15
     {
16 16
         if (file_exists($path) && is_file($path)) {
17 17
             return $path;
18 18
         }
19 19
         $basepath = dirname($path).'/'.pathinfo($path, PATHINFO_FILENAME);
20 20
 
21
-        return static::resolveYaml($basepath) ?? static::resolveExtensions($basepath, ['json','php','ini']);
21
+        return static::resolveYaml($basepath) ?? static::resolveExtensions($basepath, ['json', 'php', 'ini']);
22 22
     }
23 23
 
24 24
     /**
25 25
      * @param string $basepath
26 26
      * @return string|null
27 27
      */
28
-    protected static function resolveYaml(string $basepath):?string
28
+    protected static function resolveYaml(string $basepath): ?string
29 29
     {
30 30
         if (file_exists($conf = $basepath.'.yml') || file_exists($conf = $basepath.'.yaml')) {
31 31
             if (function_exists('yaml_parse') || class_exists('Spyc') || class_exists('Symfony\Component\Yaml\Yaml')) {
@@ -35,7 +35,7 @@  discard block
 block discarded – undo
35 35
         return null;
36 36
     }
37 37
 
38
-    protected static function resolveExtensions(string $basepath, array $extensions):?string
38
+    protected static function resolveExtensions(string $basepath, array $extensions): ?string
39 39
     {
40 40
         foreach ($extensions as $ext) {
41 41
             $conf = $basepath.'.'.$ext;
Please login to merge, or discard this patch.
suda/src/framework/config/ContentLoader.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -65,7 +65,7 @@
 block discarded – undo
65 65
 
66 66
     protected static function parseValue(string $content, array $extra = [], bool $raw = true): string
67 67
     {
68
-        return preg_replace_callback('/\$\{(.+?)\}/', function ($matchs) use ($extra, $raw) {
68
+        return preg_replace_callback('/\$\{(.+?)\}/', function($matchs) use ($extra, $raw) {
69 69
             $name = $matchs[1];
70 70
             if (($value = ArrayDotAccess::get($extra, $name, null)) !== null) {
71 71
             } elseif (defined($name)) {
Please login to merge, or discard this patch.
suda/src/application/Application.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -76,7 +76,7 @@  discard block
 block discarded – undo
76 76
      */
77 77
     protected function prepare(Request $request, Response $response)
78 78
     {
79
-        $response->setHeader('x-powered-by', 'suda/' . SUDA_VERSION, true);
79
+        $response->setHeader('x-powered-by', 'suda/'.SUDA_VERSION, true);
80 80
         $response->getWrapper()->register(ExceptionContentWrapper::class, [Throwable::class]);
81 81
         $response->getWrapper()->register(TemplateWrapper::class, [RawTemplate::class]);
82 82
 
@@ -129,7 +129,7 @@  discard block
 block discarded – undo
129 129
             if (!$appResponse->isSend()) {
130 130
                 $appResponse->end();
131 131
             }
132
-            $this->debug->info('responded with code ' . $appResponse->getStatus());
132
+            $this->debug->info('responded with code '.$appResponse->getStatus());
133 133
             $this->debug->timeEnd('sending response');
134 134
         } catch (Throwable $e) {
135 135
             $this->debug->uncaughtException($e);
@@ -155,13 +155,13 @@  discard block
 block discarded – undo
155 155
         $route = $attributes['config'] ?? [];
156 156
         $runnable = null;
157 157
         if (array_key_exists('class', $route)) {
158
-            $runnable = $this->className($route['class']) . '->onRequest';
158
+            $runnable = $this->className($route['class']).'->onRequest';
159 159
         } elseif (array_key_exists('source', $route)) {
160 160
             $attributes['source'] = $route['source'];
161
-            $runnable = FileRequestProcessor::class . '->onRequest';
161
+            $runnable = FileRequestProcessor::class.'->onRequest';
162 162
         } elseif (array_key_exists('template', $route)) {
163 163
             $attributes['template'] = $route['template'];
164
-            $runnable = TemplateRequestProcessor::class . '->onRequest';
164
+            $runnable = TemplateRequestProcessor::class.'->onRequest';
165 165
         } elseif (array_key_exists('runnable', $route)) {
166 166
             $runnable = $route['runnable'];
167 167
         } else {
Please login to merge, or discard this patch.
suda/src/framework/request/Builder.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -113,7 +113,7 @@  discard block
 block discarded – undo
113 113
         if (array_key_exists('server-port', $this->server)) {
114 114
             return $this->server['server-port'];
115 115
         }
116
-        return $this->getSecure()?443:80;
116
+        return $this->getSecure() ? 443 : 80;
117 117
     }
118 118
 
119 119
     /**
@@ -157,7 +157,7 @@  discard block
 block discarded – undo
157 157
      */
158 158
     public static function createUriBase(RequestWrapper $request)
159 159
     {
160
-        $scheme = $request->isSecure()?'https':'http';
160
+        $scheme = $request->isSecure() ? 'https' : 'http';
161 161
         $port = $request->getPort();
162 162
         if ($port == 80 && $scheme == 'http') {
163 163
             $port = '';
@@ -166,7 +166,7 @@  discard block
 block discarded – undo
166 166
         } else {
167 167
             $port = ':'.$port;
168 168
         }
169
-        $base = $scheme.'://'. $request->getHost().$port;
169
+        $base = $scheme.'://'.$request->getHost().$port;
170 170
         return $base;
171 171
     }
172 172
 
Please login to merge, or discard this patch.
suda/src/application/processor/FileRangeProccessor.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -88,10 +88,10 @@  discard block
 block discarded – undo
88 88
      */
89 89
     protected function sendMultipleFileByRange(Response $response, array $ranges)
90 90
     {
91
-        $separates = 'multiple_range_' . base64_encode(md5(uniqid(), true));
92
-        $response->setHeader('content-type', 'multipart/byteranges; boundary=' . $separates);
91
+        $separates = 'multiple_range_'.base64_encode(md5(uniqid(), true));
92
+        $response->setHeader('content-type', 'multipart/byteranges; boundary='.$separates);
93 93
         foreach ($ranges as $range) {
94
-            $response->write('--' . $separates . "\r\n");
94
+            $response->write('--'.$separates."\r\n");
95 95
             $this->sendMultipleRangePart($response, $range);
96 96
             $this->sendFileByRange($response, $range);
97 97
             $response->write("\r\n");
@@ -138,8 +138,8 @@  discard block
 block discarded – undo
138 138
      */
139 139
     protected function sendMultipleRangePart(Response $response, array $range)
140 140
     {
141
-        $response->write('Content-Type: ' . $this->mime . "\r\n");
142
-        $response->write('Content-Range: ' . $this->getRangeHeader($range) . "\r\n\r\n");
141
+        $response->write('Content-Type: '.$this->mime."\r\n");
142
+        $response->write('Content-Range: '.$this->getRangeHeader($range)."\r\n\r\n");
143 143
     }
144 144
 
145 145
     /**
Please login to merge, or discard this patch.
suda/src/framework/http/Cookie.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -304,15 +304,15 @@
 block discarded – undo
304 304
         if ($this->expire !== 0) {
305 305
             $time = $this->fullTime ? $this->expire : time() + $this->expire;
306 306
             $dateTime = DateTime::createFromFormat('U', $time, new DateTimeZone('GMT'));
307
-            $cookie .= '; Expires=' . str_replace('+0000', '', $dateTime->format('D, d M Y H:i:s T'));
307
+            $cookie .= '; Expires='.str_replace('+0000', '', $dateTime->format('D, d M Y H:i:s T'));
308 308
         }
309 309
 
310 310
         if ($this->domain !== null) {
311
-            $cookie .= '; Domain=' . $this->domain;
311
+            $cookie .= '; Domain='.$this->domain;
312 312
         }
313 313
 
314 314
         if ($this->path) {
315
-            $cookie .= '; Path=' . $this->path;
315
+            $cookie .= '; Path='.$this->path;
316 316
         }
317 317
 
318 318
         if ($this->secure) {
Please login to merge, or discard this patch.
suda/src/framework/response/ResponseWrapper.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -164,7 +164,7 @@
 block discarded – undo
164 164
     private function sendWarningIfy(string $name)
165 165
     {
166 166
         if ($this->isSend()) {
167
-            trigger_error($name .': response has been send', E_USER_WARNING);
167
+            trigger_error($name.': response has been send', E_USER_WARNING);
168 168
         }
169 169
     }
170 170
 }
Please login to merge, or discard this patch.
suda/src/swoole/Response.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -47,7 +47,7 @@
 block discarded – undo
47 47
     public function status(int $statusCode)
48 48
     {
49 49
         $this->response->status($statusCode);
50
-        $this->status  = $statusCode;
50
+        $this->status = $statusCode;
51 51
         return $this;
52 52
     }
53 53
 
Please login to merge, or discard this patch.