Passed
Push — 5.1 ( d4cd58...f8df25 )
by liu
09:32
created
library/think/db/Connection.php 2 patches
Spacing   +24 added lines, -25 removed lines patch added patch discarded remove patch
@@ -189,7 +189,7 @@  discard block
 block discarded – undo
189 189
             }
190 190
 
191 191
             // 记录初始化信息
192
-            Container::get('app')->log('[ DB ] INIT ' . $config['type']);
192
+            Container::get('app')->log('[ DB ] INIT '.$config['type']);
193 193
 
194 194
             if (true === $name) {
195 195
                 $name = md5(serialize($config));
@@ -212,7 +212,7 @@  discard block
 block discarded – undo
212 212
             return $this->builderClassName;
213 213
         }
214 214
 
215
-        return $this->getConfig('builder') ?: '\\think\\db\\builder\\' . ucfirst($this->getConfig('type'));
215
+        return $this->getConfig('builder') ?: '\\think\\db\\builder\\'.ucfirst($this->getConfig('type'));
216 216
     }
217 217
 
218 218
     /**
@@ -326,8 +326,8 @@  discard block
 block discarded – undo
326 326
     public function parseSqlTable($sql)
327 327
     {
328 328
         if (false !== strpos($sql, '__')) {
329
-            $sql = preg_replace_callback("/__([A-Z0-9_-]+)__/sU", function ($match) {
330
-                return $this->getConfig('prefix') . strtolower($match[1]);
329
+            $sql = preg_replace_callback("/__([A-Z0-9_-]+)__/sU", function($match) {
330
+                return $this->getConfig('prefix').strtolower($match[1]);
331 331
             }, $sql);
332 332
         }
333 333
 
@@ -362,14 +362,14 @@  discard block
 block discarded – undo
362 362
         list($tableName) = explode(' ', $tableName);
363 363
 
364 364
         if (false === strpos($tableName, '.')) {
365
-            $schema = $this->getConfig('database') . '.' . $tableName;
365
+            $schema = $this->getConfig('database').'.'.$tableName;
366 366
         } else {
367 367
             $schema = $tableName;
368 368
         }
369 369
 
370 370
         if (!isset(self::$info[$schema])) {
371 371
             // 读取缓存
372
-            $cacheFile = Container::get('app')->getRuntimePath() . 'schema' . DIRECTORY_SEPARATOR . $schema . '.php';
372
+            $cacheFile = Container::get('app')->getRuntimePath().'schema'.DIRECTORY_SEPARATOR.$schema.'.php';
373 373
 
374 374
             if (!$this->config['debug'] && is_file($cacheFile)) {
375 375
                 $info = include $cacheFile;
@@ -378,7 +378,7 @@  discard block
 block discarded – undo
378 378
             }
379 379
 
380 380
             $fields = array_keys($info);
381
-            $bind   = $type   = [];
381
+            $bind   = $type = [];
382 382
 
383 383
             foreach ($info as $key => $val) {
384 384
                 // 记录字段类型
@@ -529,7 +529,7 @@  discard block
 block discarded – undo
529 529
 
530 530
             if ($config['debug']) {
531 531
                 // 记录数据库连接信息
532
-                $this->log('[ DB ] CONNECT:[ UseTime:' . number_format(microtime(true) - $startTime, 6) . 's ] ' . $config['dsn']);
532
+                $this->log('[ DB ] CONNECT:[ UseTime:'.number_format(microtime(true) - $startTime, 6).'s ] '.$config['dsn']);
533 533
             }
534 534
 
535 535
             return $this->links[$linkNum];
@@ -1322,7 +1322,7 @@  discard block
 block discarded – undo
1322 1322
             list($distinct, $field) = explode(' ', $field);
1323 1323
         }
1324 1324
 
1325
-        $field = $aggregate . '(' . (!empty($distinct) ? 'DISTINCT ' : '') . $this->builder->parseKey($query, $field, true) . ') AS tp_' . strtolower($aggregate);
1325
+        $field = $aggregate.'('.(!empty($distinct) ? 'DISTINCT ' : '').$this->builder->parseKey($query, $field, true).') AS tp_'.strtolower($aggregate);
1326 1326
 
1327 1327
         return $this->value($query, $field, 0, false);
1328 1328
     }
@@ -1468,15 +1468,14 @@  discard block
 block discarded – undo
1468 1468
             $type  = is_array($val) ? $val[1] : PDO::PARAM_STR;
1469 1469
 
1470 1470
             if ((self::PARAM_FLOAT == $type || PDO::PARAM_STR == $type) && is_string($value)) {
1471
-                $value = '\'' . addslashes($value) . '\'';
1471
+                $value = '\''.addslashes($value).'\'';
1472 1472
             } elseif (PDO::PARAM_INT == $type && '' === $value) {
1473 1473
                 $value = 0;
1474 1474
             }
1475 1475
 
1476 1476
             // 判断占位符
1477 1477
             $sql = is_numeric($key) ?
1478
-            substr_replace($sql, $value, strpos($sql, '?'), 1) :
1479
-            substr_replace($sql, $value, strpos($sql, ':' . $key), strlen(':' . $key));
1478
+            substr_replace($sql, $value, strpos($sql, '?'), 1) : substr_replace($sql, $value, strpos($sql, ':'.$key), strlen(':'.$key));
1480 1479
         }
1481 1480
 
1482 1481
         return rtrim($sql);
@@ -1495,7 +1494,7 @@  discard block
 block discarded – undo
1495 1494
     {
1496 1495
         foreach ($bind as $key => $val) {
1497 1496
             // 占位符
1498
-            $param = is_int($key) ? $key + 1 : ':' . $key;
1497
+            $param = is_int($key) ? $key + 1 : ':'.$key;
1499 1498
 
1500 1499
             if (is_array($val)) {
1501 1500
                 if (PDO::PARAM_INT == $val[1] && '' === $val[0]) {
@@ -1531,7 +1530,7 @@  discard block
 block discarded – undo
1531 1530
     protected function bindParam($bind)
1532 1531
     {
1533 1532
         foreach ($bind as $key => $val) {
1534
-            $param = is_int($key) ? $key + 1 : ':' . $key;
1533
+            $param = is_int($key) ? $key + 1 : ':'.$key;
1535 1534
 
1536 1535
             if (is_array($val)) {
1537 1536
                 array_unshift($val, $param);
@@ -1687,7 +1686,7 @@  discard block
 block discarded – undo
1687 1686
                 $this->linkID->beginTransaction();
1688 1687
             } elseif ($this->transTimes > 1 && $this->supportSavepoint()) {
1689 1688
                 $this->linkID->exec(
1690
-                    $this->parseSavepoint('trans' . $this->transTimes)
1689
+                    $this->parseSavepoint('trans'.$this->transTimes)
1691 1690
                 );
1692 1691
             }
1693 1692
         } catch (\Exception $e) {
@@ -1730,7 +1729,7 @@  discard block
 block discarded – undo
1730 1729
             $this->linkID->rollBack();
1731 1730
         } elseif ($this->transTimes > 1 && $this->supportSavepoint()) {
1732 1731
             $this->linkID->exec(
1733
-                $this->parseSavepointRollBack('trans' . $this->transTimes)
1732
+                $this->parseSavepointRollBack('trans'.$this->transTimes)
1734 1733
             );
1735 1734
         }
1736 1735
 
@@ -1754,7 +1753,7 @@  discard block
 block discarded – undo
1754 1753
      */
1755 1754
     protected function parseSavepoint($name)
1756 1755
     {
1757
-        return 'SAVEPOINT ' . $name;
1756
+        return 'SAVEPOINT '.$name;
1758 1757
     }
1759 1758
 
1760 1759
     /**
@@ -1765,7 +1764,7 @@  discard block
 block discarded – undo
1765 1764
      */
1766 1765
     protected function parseSavepointRollBack($name)
1767 1766
     {
1768
-        return 'ROLLBACK TO SAVEPOINT ' . $name;
1767
+        return 'ROLLBACK TO SAVEPOINT '.$name;
1769 1768
     }
1770 1769
 
1771 1770
     /**
@@ -1900,13 +1899,13 @@  discard block
 block discarded – undo
1900 1899
     {
1901 1900
         if ($this->PDOStatement) {
1902 1901
             $error = $this->PDOStatement->errorInfo();
1903
-            $error = $error[1] . ':' . $error[2];
1902
+            $error = $error[1].':'.$error[2];
1904 1903
         } else {
1905 1904
             $error = '';
1906 1905
         }
1907 1906
 
1908 1907
         if ('' != $this->queryStr) {
1909
-            $error .= "\n [ SQL语句 ] : " . $this->getLastsql();
1908
+            $error .= "\n [ SQL语句 ] : ".$this->getLastsql();
1910 1909
         }
1911 1910
 
1912 1911
         return $error;
@@ -1983,10 +1982,10 @@  discard block
 block discarded – undo
1983 1982
             }
1984 1983
 
1985 1984
             // 未注册监听则记录到日志中
1986
-            $this->log('[ SQL ] ' . $sql . ' [ ' . $master . 'RunTime:' . $runtime . 's ]');
1985
+            $this->log('[ SQL ] '.$sql.' [ '.$master.'RunTime:'.$runtime.'s ]');
1987 1986
 
1988 1987
             if (!empty($explain)) {
1989
-                $this->log('[ EXPLAIN : ' . var_export($explain, true) . ' ]');
1988
+                $this->log('[ EXPLAIN : '.var_export($explain, true).' ]');
1990 1989
             }
1991 1990
         }
1992 1991
     }
@@ -2136,14 +2135,14 @@  discard block
 block discarded – undo
2136 2135
             $data = $value[2];
2137 2136
         }
2138 2137
 
2139
-        $prefix = 'think:' . $this->getConfig('database') . '.';
2138
+        $prefix = 'think:'.$this->getConfig('database').'.';
2140 2139
 
2141 2140
         if (isset($data)) {
2142
-            return $prefix . $query->getTable() . '|' . $data;
2141
+            return $prefix.$query->getTable().'|'.$data;
2143 2142
         }
2144 2143
 
2145 2144
         try {
2146
-            return md5($prefix . serialize($query->getOptions()) . serialize($query->getBind(false)));
2145
+            return md5($prefix.serialize($query->getOptions()).serialize($query->getBind(false)));
2147 2146
         } catch (\Exception $e) {
2148 2147
             throw new Exception('closure not support cache(true)');
2149 2148
         }
Please login to merge, or discard this patch.
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1812,9 +1812,11 @@
 block discarded – undo
1812 1812
 
1813 1813
         if ($this->config['rw_separate']) {
1814 1814
             // 主从式采用读写分离
1815
-            if ($master) // 主服务器写入
1815
+            if ($master) {
1816
+                // 主服务器写入
1816 1817
             {
1817 1818
                 $r = $m;
1819
+            }
1818 1820
             } elseif (is_numeric($this->config['slave_no'])) {
1819 1821
                 // 指定服务器读
1820 1822
                 $r = $this->config['slave_no'];
Please login to merge, or discard this patch.
library/think/db/connector/Sqlsrv.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -38,10 +38,10 @@  discard block
 block discarded – undo
38 38
      */
39 39
     protected function parseDsn($config)
40 40
     {
41
-        $dsn = 'sqlsrv:Database=' . $config['database'] . ';Server=' . $config['hostname'];
41
+        $dsn = 'sqlsrv:Database='.$config['database'].';Server='.$config['hostname'];
42 42
 
43 43
         if (!empty($config['hostport'])) {
44
-            $dsn .= ',' . $config['hostport'];
44
+            $dsn .= ','.$config['hostport'];
45 45
         }
46 46
 
47 47
         return $dsn;
@@ -160,7 +160,7 @@  discard block
 block discarded – undo
160 160
         if (is_null($field)) {
161 161
             $field = '*';
162 162
         } elseif ($key && '*' != $field) {
163
-            $field = $key . ',' . $field;
163
+            $field = $key.','.$field;
164 164
         }
165 165
 
166 166
         if (is_string($field)) {
Please login to merge, or discard this patch.
library/think/db/connector/Sqlite.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@  discard block
 block discarded – undo
30 30
      */
31 31
     protected function parseDsn($config)
32 32
     {
33
-        $dsn = 'sqlite:' . $config['database'];
33
+        $dsn = 'sqlite:'.$config['database'];
34 34
 
35 35
         return $dsn;
36 36
     }
@@ -44,7 +44,7 @@  discard block
 block discarded – undo
44 44
     public function getFields($tableName)
45 45
     {
46 46
         list($tableName) = explode(' ', $tableName);
47
-        $sql             = 'PRAGMA table_info( ' . $tableName . ' )';
47
+        $sql             = 'PRAGMA table_info( '.$tableName.' )';
48 48
 
49 49
         $pdo    = $this->query($sql, [], false, true);
50 50
         $result = $pdo->fetchAll(PDO::FETCH_ASSOC);
Please login to merge, or discard this patch.
library/think/db/connector/Pgsql.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -37,10 +37,10 @@  discard block
 block discarded – undo
37 37
      */
38 38
     protected function parseDsn($config)
39 39
     {
40
-        $dsn = 'pgsql:dbname=' . $config['database'] . ';host=' . $config['hostname'];
40
+        $dsn = 'pgsql:dbname='.$config['database'].';host='.$config['hostname'];
41 41
 
42 42
         if (!empty($config['hostport'])) {
43
-            $dsn .= ';port=' . $config['hostport'];
43
+            $dsn .= ';port='.$config['hostport'];
44 44
         }
45 45
 
46 46
         return $dsn;
@@ -55,7 +55,7 @@  discard block
 block discarded – undo
55 55
     public function getFields($tableName)
56 56
     {
57 57
         list($tableName) = explode(' ', $tableName);
58
-        $sql             = 'select fields_name as "field",fields_type as "type",fields_not_null as "null",fields_key_name as "key",fields_default as "default",fields_default as "extra" from table_msg(\'' . $tableName . '\');';
58
+        $sql             = 'select fields_name as "field",fields_type as "type",fields_not_null as "null",fields_key_name as "key",fields_default as "default",fields_default as "extra" from table_msg(\''.$tableName.'\');';
59 59
 
60 60
         $pdo    = $this->query($sql, [], false, true);
61 61
         $result = $pdo->fetchAll(PDO::FETCH_ASSOC);
Please login to merge, or discard this patch.
library/think/Debug.php 1 patch
Spacing   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -109,7 +109,7 @@  discard block
 block discarded – undo
109 109
      */
110 110
     public function getThroughputRate()
111 111
     {
112
-        return number_format(1 / $this->getUseTime(), 2) . 'req/s';
112
+        return number_format(1 / $this->getUseTime(), 2).'req/s';
113 113
     }
114 114
 
115 115
     /**
@@ -135,7 +135,7 @@  discard block
 block discarded – undo
135 135
             $pos++;
136 136
         }
137 137
 
138
-        return round($size, $dec) . " " . $a[$pos];
138
+        return round($size, $dec)." ".$a[$pos];
139 139
     }
140 140
 
141 141
     /**
@@ -155,7 +155,7 @@  discard block
 block discarded – undo
155 155
             $pos++;
156 156
         }
157 157
 
158
-        return round($size, $dec) . " " . $a[$pos];
158
+        return round($size, $dec)." ".$a[$pos];
159 159
     }
160 160
 
161 161
     /**
@@ -181,7 +181,7 @@  discard block
 block discarded – undo
181 181
             $pos++;
182 182
         }
183 183
 
184
-        return round($size, $dec) . " " . $a[$pos];
184
+        return round($size, $dec)." ".$a[$pos];
185 185
     }
186 186
 
187 187
     /**
@@ -197,7 +197,7 @@  discard block
 block discarded – undo
197 197
             $info  = [];
198 198
 
199 199
             foreach ($files as $key => $file) {
200
-                $info[] = $file . ' ( ' . number_format(filesize($file) / 1024, 2) . ' KB )';
200
+                $info[] = $file.' ( '.number_format(filesize($file) / 1024, 2).' KB )';
201 201
             }
202 202
 
203 203
             return $info;
@@ -217,7 +217,7 @@  discard block
 block discarded – undo
217 217
      */
218 218
     public function dump($var, $echo = true, $label = null, $flags = ENT_SUBSTITUTE)
219 219
     {
220
-        $label = (null === $label) ? '' : rtrim($label) . ':';
220
+        $label = (null === $label) ? '' : rtrim($label).':';
221 221
         if ($var instanceof Model || $var instanceof ModelCollection) {
222 222
             $var = $var->toArray();
223 223
         }
@@ -229,12 +229,12 @@  discard block
 block discarded – undo
229 229
         $output = preg_replace('/\]\=\>\n(\s+)/m', '] => ', $output);
230 230
 
231 231
         if (PHP_SAPI == 'cli') {
232
-            $output = PHP_EOL . $label . $output . PHP_EOL;
232
+            $output = PHP_EOL.$label.$output.PHP_EOL;
233 233
         } else {
234 234
             if (!extension_loaded('xdebug')) {
235 235
                 $output = htmlspecialchars($output, $flags);
236 236
             }
237
-            $output = '<pre>' . $label . $output . '</pre>';
237
+            $output = '<pre>'.$label.$output.'</pre>';
238 238
         }
239 239
         if ($echo) {
240 240
             echo($output);
@@ -260,9 +260,9 @@  discard block
 block discarded – undo
260 260
                 // trace调试信息注入
261 261
                 $pos = strripos($content, '</body>');
262 262
                 if (false !== $pos) {
263
-                    $content = substr($content, 0, $pos) . $output . substr($content, $pos);
263
+                    $content = substr($content, 0, $pos).$output.substr($content, $pos);
264 264
                 } else {
265
-                    $content = $content . $output;
265
+                    $content = $content.$output;
266 266
                 }
267 267
             }
268 268
         }
Please login to merge, or discard this patch.
library/think/Config.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -117,8 +117,8 @@  discard block
 block discarded – undo
117 117
     {
118 118
         if (is_file($file)) {
119 119
             $filename = $file;
120
-        } elseif (is_file($this->path . $file . $this->ext)) {
121
-            $filename = $this->path . $file . $this->ext;
120
+        } elseif (is_file($this->path.$file.$this->ext)) {
121
+            $filename = $this->path.$file.$this->ext;
122 122
         }
123 123
 
124 124
         if (isset($filename)) {
@@ -139,7 +139,7 @@  discard block
 block discarded – undo
139 139
     protected function getYaconfName($name)
140 140
     {
141 141
         if ($this->yaconf && is_string($this->yaconf)) {
142
-            return $this->yaconf . '.' . $name;
142
+            return $this->yaconf.'.'.$name;
143 143
         }
144 144
 
145 145
         return $name;
@@ -188,7 +188,7 @@  discard block
 block discarded – undo
188 188
     public function has($name)
189 189
     {
190 190
         if (false === strpos($name, '.')) {
191
-            $name = $this->prefix . '.' . $name;
191
+            $name = $this->prefix.'.'.$name;
192 192
         }
193 193
 
194 194
         return !is_null($this->get($name));
@@ -226,7 +226,7 @@  discard block
 block discarded – undo
226 226
     public function get($name = null, $default = null)
227 227
     {
228 228
         if ($name && false === strpos($name, '.')) {
229
-            $name = $this->prefix . '.' . $name;
229
+            $name = $this->prefix.'.'.$name;
230 230
         }
231 231
 
232 232
         // 无参数时获取所有
@@ -273,7 +273,7 @@  discard block
 block discarded – undo
273 273
     {
274 274
         if (is_string($name)) {
275 275
             if (false === strpos($name, '.')) {
276
-                $name = $this->prefix . '.' . $name;
276
+                $name = $this->prefix.'.'.$name;
277 277
             }
278 278
 
279 279
             $name = explode('.', $name, 3);
@@ -315,7 +315,7 @@  discard block
 block discarded – undo
315 315
     public function remove($name)
316 316
     {
317 317
         if (false === strpos($name, '.')) {
318
-            $name = $this->prefix . '.' . $name;
318
+            $name = $this->prefix.'.'.$name;
319 319
         }
320 320
 
321 321
         $name = explode('.', $name, 3);
Please login to merge, or discard this patch.
library/think/paginator/driver/Bootstrap.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -136,7 +136,7 @@  discard block
 block discarded – undo
136 136
      */
137 137
     protected function getAvailablePageWrapper($url, $page)
138 138
     {
139
-        return '<li><a href="' . htmlentities($url) . '">' . $page . '</a></li>';
139
+        return '<li><a href="'.htmlentities($url).'">'.$page.'</a></li>';
140 140
     }
141 141
 
142 142
     /**
@@ -147,7 +147,7 @@  discard block
 block discarded – undo
147 147
      */
148 148
     protected function getDisabledTextWrapper($text)
149 149
     {
150
-        return '<li class="disabled"><span>' . $text . '</span></li>';
150
+        return '<li class="disabled"><span>'.$text.'</span></li>';
151 151
     }
152 152
 
153 153
     /**
@@ -158,7 +158,7 @@  discard block
 block discarded – undo
158 158
      */
159 159
     protected function getActivePageWrapper($text)
160 160
     {
161
-        return '<li class="active"><span>' . $text . '</span></li>';
161
+        return '<li class="active"><span>'.$text.'</span></li>';
162 162
     }
163 163
 
164 164
     /**
Please login to merge, or discard this patch.
library/think/session/driver/Memcached.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -96,7 +96,7 @@  discard block
 block discarded – undo
96 96
      */
97 97
     public function read($sessID)
98 98
     {
99
-        return (string) $this->handler->get($this->config['session_name'] . $sessID);
99
+        return (string) $this->handler->get($this->config['session_name'].$sessID);
100 100
     }
101 101
 
102 102
     /**
@@ -108,7 +108,7 @@  discard block
 block discarded – undo
108 108
      */
109 109
     public function write($sessID, $sessData)
110 110
     {
111
-        return $this->handler->set($this->config['session_name'] . $sessID, $sessData, $this->config['expire']);
111
+        return $this->handler->set($this->config['session_name'].$sessID, $sessData, $this->config['expire']);
112 112
     }
113 113
 
114 114
     /**
@@ -119,7 +119,7 @@  discard block
 block discarded – undo
119 119
      */
120 120
     public function destroy($sessID)
121 121
     {
122
-        return $this->handler->delete($this->config['session_name'] . $sessID);
122
+        return $this->handler->delete($this->config['session_name'].$sessID);
123 123
     }
124 124
 
125 125
     /**
Please login to merge, or discard this patch.
library/think/session/driver/Memcache.php 1 patch
Spacing   +4 added lines, -5 removed lines patch added patch discarded remove patch
@@ -58,8 +58,7 @@  discard block
 block discarded – undo
58 58
         foreach ((array) $hosts as $i => $host) {
59 59
             $port = isset($ports[$i]) ? $ports[$i] : $ports[0];
60 60
             $this->config['timeout'] > 0 ?
61
-            $this->handler->addServer($host, $port, $this->config['persistent'], 1, $this->config['timeout']) :
62
-            $this->handler->addServer($host, $port, $this->config['persistent'], 1);
61
+            $this->handler->addServer($host, $port, $this->config['persistent'], 1, $this->config['timeout']) : $this->handler->addServer($host, $port, $this->config['persistent'], 1);
63 62
         }
64 63
 
65 64
         return true;
@@ -85,7 +84,7 @@  discard block
 block discarded – undo
85 84
      */
86 85
     public function read($sessID)
87 86
     {
88
-        return (string) $this->handler->get($this->config['session_name'] . $sessID);
87
+        return (string) $this->handler->get($this->config['session_name'].$sessID);
89 88
     }
90 89
 
91 90
     /**
@@ -97,7 +96,7 @@  discard block
 block discarded – undo
97 96
      */
98 97
     public function write($sessID, $sessData)
99 98
     {
100
-        return $this->handler->set($this->config['session_name'] . $sessID, $sessData, 0, $this->config['expire']);
99
+        return $this->handler->set($this->config['session_name'].$sessID, $sessData, 0, $this->config['expire']);
101 100
     }
102 101
 
103 102
     /**
@@ -108,7 +107,7 @@  discard block
 block discarded – undo
108 107
      */
109 108
     public function destroy($sessID)
110 109
     {
111
-        return $this->handler->delete($this->config['session_name'] . $sessID);
110
+        return $this->handler->delete($this->config['session_name'].$sessID);
112 111
     }
113 112
 
114 113
     /**
Please login to merge, or discard this patch.