Passed
Push — master ( 3cb2b5...fef319 )
by 世昌
02:02
created
suda/src/orm/connection/MySQLConnection.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -45,7 +45,7 @@  discard block
 block discarded – undo
45 45
             $password = $this->config['password'] ?? '';
46 46
             $pdo = new PDO($this->getDsn(), $user, $password);
47 47
             $this->id = static::$connectionCount;
48
-            static::$connectionCount ++;
48
+            static::$connectionCount++;
49 49
             return $pdo;
50 50
         } catch (PDOException $e) {
51 51
             throw new SQLException(sprintf(
@@ -64,7 +64,7 @@  discard block
 block discarded – undo
64 64
      */
65 65
     public function switchDatabase(string $database)
66 66
     {
67
-        return $this->query(new QueryStatement('USE `' . $database.'`'));
67
+        return $this->query(new QueryStatement('USE `'.$database.'`'));
68 68
     }
69 69
 
70 70
     public function rawTableName(string $name)
Please login to merge, or discard this patch.
suda/src/orm/connection/SQLiteConnection.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -40,7 +40,7 @@  discard block
 block discarded – undo
40 40
         try {
41 41
             $pdo = new PDO($this->getDsn());
42 42
             $this->id = static::$connectionCount;
43
-            static::$connectionCount ++;
43
+            static::$connectionCount++;
44 44
             return $pdo;
45 45
         } catch (PDOException $e) {
46 46
             throw new SQLException(
@@ -62,7 +62,7 @@  discard block
 block discarded – undo
62 62
      */
63 63
     public function switchDatabase(string $database)
64 64
     {
65
-        return $this->query(new QueryStatement('USE `' . $database.'`'));
65
+        return $this->query(new QueryStatement('USE `'.$database.'`'));
66 66
     }
67 67
 
68 68
     /**
Please login to merge, or discard this patch.
suda/src/application/database/creator/MySQLTableCreator.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -105,8 +105,8 @@  discard block
 block discarded – undo
105 105
         $table = $this->connection->rawTableName($this->name);
106 106
         $sql = "CREATE TABLE IF NOT EXISTS `{$table}` (\r\n\t";
107 107
         $sql .= implode(",\r\n\t", array_filter($content, 'strlen'));
108
-        $auto = null === $this->auto?'':'AUTO_INCREMENT='.$this->auto;
109
-        $collate = null === $this->collate?'':'COLLATE '.$this->collate;
108
+        $auto = null === $this->auto ? '' : 'AUTO_INCREMENT='.$this->auto;
109
+        $collate = null === $this->collate ? '' : 'COLLATE '.$this->collate;
110 110
         $sql .= "\r\n) ENGINE={$this->engine} {$collate} {$auto} DEFAULT CHARSET={$this->charset};";
111 111
         return $sql;
112 112
     }
@@ -124,7 +124,7 @@  discard block
 block discarded – undo
124 124
             }
125 125
         }
126 126
         if (count($primary)) {
127
-            return 'PRIMARY KEY ('. implode(',', $primary).')';
127
+            return 'PRIMARY KEY ('.implode(',', $primary).')';
128 128
         }
129 129
         return  '';
130 130
     }
@@ -217,10 +217,10 @@  discard block
 block discarded – undo
217 217
     protected function createField(Field $field)
218 218
     {
219 219
         $type = strtoupper($field->getValueType()).$this->parseLength($field->getLength());
220
-        $auto = $field->getAuto() ?'AUTO_INCREMENT':'';
221
-        $null = $field->isNullable() ?'NULL':'NOT NULL';
222
-        $attr = $field->getAttribute() ?strtoupper($field->getAttribute()):'';
223
-        $comment = $field->getComment() ?('COMMENT \''.addcslashes($field->getComment(), '\'').'\''):'';
220
+        $auto = $field->getAuto() ? 'AUTO_INCREMENT' : '';
221
+        $null = $field->isNullable() ? 'NULL' : 'NOT NULL';
222
+        $attr = $field->getAttribute() ?strtoupper($field->getAttribute()) : '';
223
+        $comment = $field->getComment() ? ('COMMENT \''.addcslashes($field->getComment(), '\'').'\'') : '';
224 224
         // default设置
225 225
         if ($field->hasDefault()) {
226 226
             if (null === $field->getDefault()) {
Please login to merge, or discard this patch.
suda/src/application/database/QueryStatementBuilder.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -77,8 +77,8 @@
 block discarded – undo
77 77
     protected function modifyQueryStatement(QueryStatement $statement):QueryStatement
78 78
     {
79 79
         $type = $this->config['type'] ?? 'read';
80
-        if (in_array($type, ['read','write'])) {
81
-            $statement->setType($type === 'read'?QueryStatement::READ:QueryStatement::WRITE);
80
+        if (in_array($type, ['read', 'write'])) {
81
+            $statement->setType($type === 'read' ?QueryStatement::READ : QueryStatement::WRITE);
82 82
         }
83 83
         if (array_key_exists('return-type', $this->config)) {
84 84
             $statement->setReturnType($this->config['return-type']);
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
@@ -41,17 +41,17 @@  discard block
 block discarded – undo
41 41
         $this->debug->info('===============================');
42 42
         $this->debug->time('loading application');
43 43
         $appLoader->load();
44
-        $this->event->exec('application:load-config', [ $this->config ,$this]);
44
+        $this->event->exec('application:load-config', [$this->config, $this]);
45 45
         $this->debug->timeEnd('loading application');
46 46
         $this->debug->time('loading data-source');
47 47
         $appLoader->loadDataSource();
48 48
         Table::load($this);
49 49
         DataAccess::load($this);
50
-        $this->event->exec('application:load-environment', [ $this->config ,$this]);
50
+        $this->event->exec('application:load-environment', [$this->config, $this]);
51 51
         $this->debug->timeEnd('loading data-source');
52 52
         $this->debug->time('loading route');
53 53
         $appLoader->loadRoute();
54
-        $this->event->exec('application:load-route', [$this->route , $this]);
54
+        $this->event->exec('application:load-route', [$this->route, $this]);
55 55
         $this->debug->timeEnd('loading route');
56 56
         $this->debug->info('-------------------------------');
57 57
     }
@@ -107,7 +107,7 @@  discard block
 block discarded – undo
107 107
             if (!$response->isSended()) {
108 108
                 $response->end();
109 109
             }
110
-            $this->debug->info('resposned with code '. $response->getStatus());
110
+            $this->debug->info('resposned with code '.$response->getStatus());
111 111
             $this->debug->timeEnd('sending response');
112 112
         } catch (Throwable $e) {
113 113
             $this->debug->uncaughtException($e);
@@ -175,7 +175,7 @@  discard block
 block discarded – undo
175 175
     protected function createResponse(?MatchResult $result, Request $request, Response $response)
176 176
     {
177 177
         if (SUDA_DEBUG) {
178
-            $response->setHeader('x-route', $result === null?'default':$result->getName());
178
+            $response->setHeader('x-route', $result === null ? 'default' : $result->getName());
179 179
         }
180 180
         if ($result === null) {
181 181
             $content = $this->defaultResponse($this, $request, $response);
Please login to merge, or discard this patch.
suda/src/application/template/TemplateUtil.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -44,13 +44,13 @@  discard block
 block discarded – undo
44 44
     protected static function fixConfig(Application $application, ?string $module, array $config)
45 45
     {
46 46
         if (!array_key_exists('assets-prefix', $config)) {
47
-            $config['assets-prefix'] = defined('SUDA_ASSETS') ? constant('SUDA_ASSETS'): 'assets';
47
+            $config['assets-prefix'] = defined('SUDA_ASSETS') ? constant('SUDA_ASSETS') : 'assets';
48 48
         }
49 49
         if (!array_key_exists('static', $config)) {
50 50
             $config['static'] = 'static';
51 51
         }
52 52
         if (!array_key_exists('assets-path', $config)) {
53
-            $config['assets-path'] = SUDA_PUBLIC. '/'.$config['assets-prefix'];
53
+            $config['assets-path'] = SUDA_PUBLIC.'/'.$config['assets-prefix'];
54 54
         }
55 55
         if (!array_key_exists('static-name', $config)) {
56 56
             $config['uri-name'] = static::getSafeUriName($application, $module);
@@ -114,7 +114,7 @@  discard block
 block discarded – undo
114 114
     {
115 115
         $assetRoot = static::getAssetRoot($application, $module);
116 116
         if (in_array($request->getIndex(), $application->conf('index', ['/index.php']))) {
117
-            $name = static::writableAssets($application, $module) ? dirname($request->getIndex()):$request->getIndex();
117
+            $name = static::writableAssets($application, $module) ? dirname($request->getIndex()) : $request->getIndex();
118 118
             return rtrim(str_replace('\\', '/', $name), '/').$assetRoot;
119 119
         }
120 120
         return rtrim(str_replace('\\', '/', $request->getIndex()), '/').$assetRoot;
@@ -150,7 +150,7 @@  discard block
 block discarded – undo
150 150
         ?string $module = null
151 151
     ):string {
152 152
         $assetRoot = static::getAssetRoot($application, $module);
153
-        $name = static::writableAssets($application, $module) ? dirname($request->getIndex()):$request->getIndex();
153
+        $name = static::writableAssets($application, $module) ? dirname($request->getIndex()) : $request->getIndex();
154 154
         return rtrim(str_replace('\\', '/', $name), '/').$assetRoot;
155 155
     }
156 156
 
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
@@ -104,7 +104,7 @@  discard block
 block discarded – undo
104 104
         if (array_key_exists('server-port', $this->request->server())) {
105 105
             return $this->request->server()['server-port'];
106 106
         }
107
-        return $this->getSecure()?443:80;
107
+        return $this->getSecure() ? 443 : 80;
108 108
     }
109 109
 
110 110
     /**
@@ -148,7 +148,7 @@  discard block
 block discarded – undo
148 148
      */
149 149
     private function createUribase(RequestWrapper $request)
150 150
     {
151
-        $scheme = $request->isSecure()?'https':'http';
151
+        $scheme = $request->isSecure() ? 'https' : 'http';
152 152
         $port = $request->getPort();
153 153
         if ($port == 80 && $scheme == 'http') {
154 154
             $port = '';
@@ -157,7 +157,7 @@  discard block
 block discarded – undo
157 157
         } else {
158 158
             $port = ':'.$port;
159 159
         }
160
-        $base = $scheme.'://'. $request->getHost().$port;
160
+        $base = $scheme.'://'.$request->getHost().$port;
161 161
         $request->setUriBase($base);
162 162
     }
163 163
 }
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
@@ -31,7 +31,7 @@  discard block
 block discarded – undo
31 31
         bool $allowQuery = true,
32 32
         ?string $default = null,
33 33
         ?string $group = null
34
-    ):?string {
34
+    ): ?string {
35 35
         $group = $group ?? $request->getAttribute('group');
36 36
         $default = $default ?? $request->getAttribute('module');
37 37
         $url = $this->route->create($this->getRouteName($name, $default, $group), $parameter, $allowQuery);
@@ -46,7 +46,7 @@  discard block
 block discarded – undo
46 46
      */
47 47
     protected function getUrlIndex(Request $request):string
48 48
     {
49
-        $indexArray = $this->conf('index') ?? [ 'index.php' ];
49
+        $indexArray = $this->conf('index') ?? ['index.php'];
50 50
         $index = ltrim($request->getIndex(), '/');
51 51
         if (!in_array($index, $indexArray)) {
52 52
             return $request->getIndex();
@@ -133,7 +133,7 @@  discard block
 block discarded – undo
133 133
     public function getUriBase(Request $request, bool $beautify = true):string
134 134
     {
135 135
         $index = $beautify ? $this->getUrlIndex($request) : $request->getIndex();
136
-        return $request->getUriBase() . $index;
136
+        return $request->getUriBase().$index;
137 137
     }
138 138
 
139 139
     /**
@@ -144,6 +144,6 @@  discard block
 block discarded – undo
144 144
      */
145 145
     protected function getRouteGroupPrefix(?string $group):string
146 146
     {
147
-        return $group === null || $group === 'default' ? '': '@'. $group;
147
+        return $group === null || $group === 'default' ? '' : '@'.$group;
148 148
     }
149 149
 }
Please login to merge, or discard this patch.