Passed
Push — master ( 48facb...9d5835 )
by 世昌
02:25
created
suda/src/application/loader/ModuleLoader.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -180,7 +180,7 @@  discard block
 block discarded – undo
180 180
      */
181 181
     protected function loadRouteGroup(string $groupName)
182 182
     {
183
-        $group = $groupName === 'default' ? '': '-'. $groupName;
183
+        $group = $groupName === 'default' ? '' : '-'.$groupName;
184 184
         if ($path = $this->module->getResource()->getConfigResourcePath('config/route'.$group)) {
185 185
             $routeConfig = Config::loadConfig($path, [
186 186
                 'module' => $this->module->getName(),
@@ -204,7 +204,7 @@  discard block
 block discarded – undo
204 204
      */
205 205
     protected function loadRouteConfig(string $prefix, string $groupName, array $routeConfig)
206 206
     {
207
-        $module =  $this->module->getFullName();
207
+        $module = $this->module->getFullName();
208 208
         foreach ($routeConfig as $name => $config) {
209 209
             $exname = $this->application->getRouteName($name, $module, $groupName);
210 210
             $method = $config['method'] ?? [];
@@ -218,7 +218,7 @@  discard block
 block discarded – undo
218 218
             if ($anti) {
219 219
                 $uri = '/'.trim($uri, '/');
220 220
             } else {
221
-                $uri = '/'.trim($prefix . $uri, '/');
221
+                $uri = '/'.trim($prefix.$uri, '/');
222 222
             }
223 223
             $this->application->request($method, $exname, $uri, $attriute);
224 224
         }
Please login to merge, or discard this patch.
suda/src/framework/debug/attach/DumpTrait.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -64,11 +64,11 @@  discard block
 block discarded – undo
64 64
     protected static function valueToString(string $key, $value, int $deep):string
65 65
     {
66 66
         if (is_string($value) && strlen($value) > static::$dumpStringLength) {
67
-            return  $key.'='.json_encode(substr($value, 0, static::$dumpStringLength), JSON_UNESCAPED_UNICODE) .'... ,';
67
+            return  $key.'='.json_encode(substr($value, 0, static::$dumpStringLength), JSON_UNESCAPED_UNICODE).'... ,';
68 68
         } elseif (is_bool($value)) {
69 69
             return $key.'='.($value ? 'true' : 'false').' ,';
70 70
         } else {
71
-            return $key.'='.self::parameterToString($value, $deep - 1) .' ,';
71
+            return $key.'='.self::parameterToString($value, $deep - 1).' ,';
72 72
         }
73 73
     }
74 74
 
@@ -116,7 +116,7 @@  discard block
 block discarded – undo
116 116
         $argsDump = '';
117 117
         if (!empty($trace['args'])) {
118 118
             foreach ($trace['args'] as $arg) {
119
-                $argsDump .= self::parameterToString($arg) .',';
119
+                $argsDump .= self::parameterToString($arg).',';
120 120
             }
121 121
             $argsDump = rtrim($argsDump, ',');
122 122
         }
@@ -126,8 +126,8 @@  discard block
 block discarded – undo
126 126
 
127 127
     public static function dumpThrowable(\Throwable $e)
128 128
     {
129
-        $dump = get_class($e).':'. $e->getMessage() .PHP_EOL;
130
-        $dump .= 'At: ' . $e->getFile().':'.$e->getLine().PHP_EOL;
129
+        $dump = get_class($e).':'.$e->getMessage().PHP_EOL;
130
+        $dump .= 'At: '.$e->getFile().':'.$e->getLine().PHP_EOL;
131 131
         $dump .= static::dumpTrace($e->getTrace());
132 132
         return $dump;
133 133
     }
Please login to merge, or discard this patch.
suda/src/application/exception/MissingTemplateException.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@
 block discarded – undo
13 13
     public function __construct(string $name, int $type = 0)
14 14
     {
15 15
         $this->name = $name;
16
-        parent::__construct(sprintf('missing template %s', $name, $type == 0 ? 'source':'dest'));
16
+        parent::__construct(sprintf('missing template %s', $name, $type == 0 ? 'source' : 'dest'));
17 17
     }
18 18
 
19 19
 
Please login to merge, or discard this patch.
suda/src/application/template/CompilableTemplate.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -106,7 +106,7 @@  discard block
 block discarded – undo
106 106
 
107 107
     protected function getStaticOutpath()
108 108
     {
109
-        $path = $this->config['assets-public'] ?? \constant('SUDA_PUBLIC').'/assets/'. $this->getStaticName();
109
+        $path = $this->config['assets-public'] ?? \constant('SUDA_PUBLIC').'/assets/'.$this->getStaticName();
110 110
         FileSystem::make($path);
111 111
         return $path;
112 112
     }
@@ -120,7 +120,7 @@  discard block
 block discarded – undo
120 120
     {
121 121
         $output = $this->config['output'] ?? \constant('SUDA_DATA').'/template';
122 122
         FileSystem::make($output);
123
-        return $output .'/'. $this->name.'-'.substr(md5_file($this->getSourcePath()), 10, 8).'.php';
123
+        return $output.'/'.$this->name.'-'.substr(md5_file($this->getSourcePath()), 10, 8).'.php';
124 124
     }
125 125
 
126 126
     /**
@@ -128,7 +128,7 @@  discard block
 block discarded – undo
128 128
      *
129 129
      * @return string|null
130 130
      */
131
-    public function getSourcePath():?string
131
+    public function getSourcePath(): ?string
132 132
     {
133 133
         return $this->source ?? null;
134 134
     }
@@ -149,7 +149,7 @@  discard block
 block discarded – undo
149 149
      *
150 150
      * @return void
151 151
      */
152
-    protected function compile(){
152
+    protected function compile() {
153 153
         $sourcePath = $this->getSourcePath();
154 154
         $destPath = $this->getPath();
155 155
         if ($sourcePath === null) {
@@ -202,7 +202,7 @@  discard block
 block discarded – undo
202 202
     public function include(string $path)
203 203
     {
204 204
         $subfix = $this->config['subfix'] ?? '';
205
-        $included = new self(Resource::getPathByRelativedPath($path. $subfix, dirname($this->source)), $this->config);
205
+        $included = new self(Resource::getPathByRelativedPath($path.$subfix, dirname($this->source)), $this->config);
206 206
         $included->parent = $this;
207 207
         echo $included->getRenderedString();
208 208
     }
@@ -219,13 +219,13 @@  discard block
 block discarded – undo
219 219
     {
220 220
         $this->prepareStaticSource();
221 221
         if (\array_key_exists('assets-prefix', $this->config)) {
222
-            $prefix = $this->config['assets-prefix'] ;
222
+            $prefix = $this->config['assets-prefix'];
223 223
         } elseif (defined('SUDA_ASSETS')) {
224 224
             $prefix = \constant('SUDA_ASSETS');
225 225
         } else {
226 226
             $prefix = '/assets';
227 227
         }
228
-        return $prefix .'/'.$this->getStaticName();
228
+        return $prefix.'/'.$this->getStaticName();
229 229
     }
230 230
 
231 231
     protected function prepareStaticSource()
Please login to merge, or discard this patch.
suda/src/application/template/ModuleTemplate.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -26,7 +26,7 @@  discard block
 block discarded – undo
26 26
      *
27 27
      * @return string|null
28 28
      */
29
-    public function getSourcePath():?string
29
+    public function getSourcePath(): ?string
30 30
     {
31 31
         $subfix = $this->config['subfix'] ?? '.tpl.html';
32 32
         return $this->getResource($this->module)->getResourcePath($this->getTemplatePath().'/'.$this->name.$subfix);
@@ -39,9 +39,9 @@  discard block
 block discarded – undo
39 39
      */
40 40
     public function getPath()
41 41
     {
42
-        $output = $this->config['output'] ?? \constant('SUDA_DATA').'/template/'. $this->uriName;
42
+        $output = $this->config['output'] ?? \constant('SUDA_DATA').'/template/'.$this->uriName;
43 43
         FileSystem::make($output);
44
-        return $output .'/'. $this->name.'.php';
44
+        return $output.'/'.$this->name.'.php';
45 45
     }
46 46
 
47 47
     /**
@@ -69,7 +69,7 @@  discard block
 block discarded – undo
69 69
             }
70 70
             return $this->application->getUrl($this->request, $name, $values ?? [], true, $this->module, $this->group);
71 71
         } elseif (is_array($name) && \is_string($defaultName)) {
72
-            return $this->application->getUrl($this->request, $defaultName, array_merge($this->request->get() ?? [], $name) , true, $this->module, $this->group);
72
+            return $this->application->getUrl($this->request, $defaultName, array_merge($this->request->get() ?? [], $name), true, $this->module, $this->group);
73 73
         } elseif (is_string($defaultName)) {
74 74
             return $this->application->getUrl($this->request, $defaultName, $this->request->get() ?? [], true, $this->module, $this->group);
75 75
         }
@@ -88,7 +88,7 @@  discard block
 block discarded – undo
88 88
         if ($this->request->getAttribute('route') === $full) {
89 89
             if (\is_array($parameter)) {
90 90
                 foreach ($parameter as $key => $value) {
91
-                    if ($this->request->getQuery($key) != $value){
91
+                    if ($this->request->getQuery($key) != $value) {
92 92
                         return false;
93 93
                     }
94 94
                 }
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
@@ -98,7 +98,7 @@  discard block
 block discarded – undo
98 98
         if (array_key_exists('server-port', $this->request->server())) {
99 99
             return $this->request->server()['server-port'];
100 100
         }
101
-        return $this->getSecure()?443:80;
101
+        return $this->getSecure() ? 443 : 80;
102 102
     }
103 103
 
104 104
     /**
@@ -138,7 +138,7 @@  discard block
 block discarded – undo
138 138
      */
139 139
     private function createUribase(Request $request)
140 140
     {
141
-        $scheme = $request->isSecure()?'https':'http';
141
+        $scheme = $request->isSecure() ? 'https' : 'http';
142 142
         $port = $request->getPort();
143 143
         if ($port == 80 && $scheme == 'http') {
144 144
             $port = '';
@@ -147,7 +147,7 @@  discard block
 block discarded – undo
147 147
         } else {
148 148
             $port = ':'.$port;
149 149
         }
150
-        $base = $scheme.'://'. $request->getHost().$port;
150
+        $base = $scheme.'://'.$request->getHost().$port;
151 151
         $request->setUribase($base);
152 152
     }
153 153
 }
Please login to merge, or discard this patch.
suda/src/application/ApplicationSource.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@  discard block
 block discarded – undo
21 21
      * @param string|null $default
22 22
      * @return string|null
23 23
      */
24
-    public function getUrl(Request $request, string $name, array $parameter = [], bool $allowQuery = true, ?string $default = null, ?string $group = null):?string
24
+    public function getUrl(Request $request, string $name, array $parameter = [], bool $allowQuery = true, ?string $default = null, ?string $group = null): ?string
25 25
     {
26 26
         $group = $group ?? $request->getAttribute('group');
27 27
         $default = $default ?? $request->getAttribute('module');
@@ -37,7 +37,7 @@  discard block
 block discarded – undo
37 37
      */
38 38
     protected function getUrlIndex(Request $request):string
39 39
     {
40
-        $indexs = $this->conf('indexs') ?? [ 'index.php' ];
40
+        $indexs = $this->conf('indexs') ?? ['index.php'];
41 41
         $index = ltrim($request->getIndex(), '/');
42 42
         if (!\in_array($index, $indexs)) {
43 43
             return $request->getIndex();
@@ -139,7 +139,7 @@  discard block
 block discarded – undo
139 139
      */
140 140
     public function getUribase(Request $request, bool $beautify = true):string {
141 141
         $index = $beautify ? $this->getUrlIndex($request) : $request->getIndex();
142
-        return $request->getUribase() . $index;
142
+        return $request->getUribase().$index;
143 143
     }
144 144
 
145 145
     /**
@@ -150,6 +150,6 @@  discard block
 block discarded – undo
150 150
      */
151 151
     protected function getRouteGroupPrefix(?string $group):string
152 152
     {
153
-        return $group === null || $group === 'default' ? '': '@'. $group;
153
+        return $group === null || $group === 'default' ? '' : '@'.$group;
154 154
     }
155 155
 }
Please login to merge, or discard this patch.
suda/src/application/Resource.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -25,7 +25,7 @@  discard block
 block discarded – undo
25 25
      */
26 26
     public function __construct($resource = [])
27 27
     {
28
-        $this->resource = \is_array($resource)?$resource:[$resource];
28
+        $this->resource = \is_array($resource) ? $resource : [$resource];
29 29
     }
30 30
 
31 31
     /**
@@ -65,7 +65,7 @@  discard block
 block discarded – undo
65 65
      * @param string $limitPath 父级溢出
66 66
      * @return string|null
67 67
      */
68
-    public function getResourcePath(string $path, string $limitPath = null):?string
68
+    public function getResourcePath(string $path, string $limitPath = null): ?string
69 69
     {
70 70
         foreach ($this->resource as $root) {
71 71
             $target = $root.'/'.$path;
@@ -83,7 +83,7 @@  discard block
 block discarded – undo
83 83
      * @param string $path
84 84
      * @return string|null
85 85
      */
86
-    public function getConfigResourcePath(string $path):?string
86
+    public function getConfigResourcePath(string $path): ?string
87 87
     {
88 88
         foreach ($this->resource as $root) {
89 89
             if ($target = PathResolver::resolve($root.'/'.$path)) {
Please login to merge, or discard this patch.
suda/src/framework/debug/Debug.php 1 patch
Spacing   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@  discard block
 block discarded – undo
17 17
 
18 18
 class Debug implements LoggerInterface, LoggerAwareInterface, DumpInterface, AttachInterface, ConfigInterface
19 19
 {
20
-    use LoggerTrait,LoggerAwareTrait,DumpTrait,AttachTrait,ConfigTrait;
20
+    use LoggerTrait, LoggerAwareTrait, DumpTrait, AttachTrait, ConfigTrait;
21 21
 
22 22
     /**
23 23
      * 忽略堆栈
@@ -68,7 +68,7 @@  discard block
 block discarded – undo
68 68
     {
69 69
         $replace = [];
70 70
         foreach ($context as $key => $val) {
71
-            $replace['{' . $key . '}'] = $val;
71
+            $replace['{'.$key.'}'] = $val;
72 72
         }
73 73
         return strtr($message, $replace);
74 74
     }
@@ -84,26 +84,26 @@  discard block
 block discarded – undo
84 84
         return $attribute;
85 85
     }
86 86
 
87
-    public static function formatBytes(int $bytes, int $precision=0)
87
+    public static function formatBytes(int $bytes, int $precision = 0)
88 88
     {
89
-        $human= ['B', 'KB', 'MB', 'GB', 'TB'];
89
+        $human = ['B', 'KB', 'MB', 'GB', 'TB'];
90 90
         $bytes = max($bytes, 0);
91
-        $pow = floor(($bytes?log($bytes):0)/log(1024));
92
-        $pos = min($pow, count($human)-1);
93
-        $bytes /= (1 << (10* $pos));
91
+        $pow = floor(($bytes ?log($bytes) : 0) / log(1024));
92
+        $pos = min($pow, count($human) - 1);
93
+        $bytes /= (1 << (10 * $pos));
94 94
         return round($bytes, $precision).' '.$human[$pos];
95 95
     }
96 96
 
97
-    public function time(string $name, string $type= LogLevel::INFO)
97
+    public function time(string $name, string $type = LogLevel::INFO)
98 98
     {
99
-        $this->timeRecord[$name]=['time'=>microtime(true),'level'=>$type];
99
+        $this->timeRecord[$name] = ['time'=>microtime(true), 'level'=>$type];
100 100
     }
101 101
 
102 102
     public function timeEnd(string $name)
103 103
     {
104 104
         if (\array_key_exists($name, $this->timeRecord)) {
105
-            $pass=microtime(true)-$this->timeRecord[$name]['time'];
106
-            $this->log($this->timeRecord[$name]['level'], 'process '. $name.' cost '. number_format($pass, 5).'s');
105
+            $pass = microtime(true) - $this->timeRecord[$name]['time'];
106
+            $this->log($this->timeRecord[$name]['level'], 'process '.$name.' cost '.number_format($pass, 5).'s');
107 107
             return $pass;
108 108
         }
109 109
         return 0;
Please login to merge, or discard this patch.