@@ -100,7 +100,7 @@ discard block |
||
| 100 | 100 | * @param string $label |
| 101 | 101 | * @return void |
| 102 | 102 | */ |
| 103 | - public static function setConnection(string $label=null) |
|
| 103 | + public static function setConnection(string $label = null) |
|
| 104 | 104 | { |
| 105 | 105 | if ($label === null && static::$currentConnection === null) { |
| 106 | 106 | static::$currentConnection = static::getDefaultLabel(); |
@@ -133,7 +133,7 @@ discard block |
||
| 133 | 133 | * @uses static::$Timezone |
| 134 | 134 | * @uses PDO |
| 135 | 135 | */ |
| 136 | - public static function getConnection($label=null) |
|
| 136 | + public static function getConnection($label = null) |
|
| 137 | 137 | { |
| 138 | 138 | if ($label === null) { |
| 139 | 139 | if (static::$currentConnection === null) { |
@@ -152,10 +152,10 @@ discard block |
||
| 152 | 152 | |
| 153 | 153 | if (isset($config['socket'])) { |
| 154 | 154 | // socket connection |
| 155 | - $DSN = 'mysql:unix_socket=' . $config['socket'] . ';dbname=' . $config['database']; |
|
| 155 | + $DSN = 'mysql:unix_socket='.$config['socket'].';dbname='.$config['database']; |
|
| 156 | 156 | } else { |
| 157 | 157 | // tcp connection |
| 158 | - $DSN = 'mysql:host=' . $config['host'] . ';port=' . $config['port'] .';dbname=' . $config['database']; |
|
| 158 | + $DSN = 'mysql:host='.$config['host'].';port='.$config['port'].';dbname='.$config['database']; |
|
| 159 | 159 | } |
| 160 | 160 | |
| 161 | 161 | try { |
@@ -186,7 +186,7 @@ discard block |
||
| 186 | 186 | { |
| 187 | 187 | if (is_string($data)) { |
| 188 | 188 | $data = static::getConnection()->quote($data); |
| 189 | - $data = substr($data, 1, strlen($data)-2); |
|
| 189 | + $data = substr($data, 1, strlen($data) - 2); |
|
| 190 | 190 | return $data; |
| 191 | 191 | } elseif (is_array($data)) { |
| 192 | 192 | foreach ($data as $key=>$string) { |
@@ -511,7 +511,7 @@ discard block |
||
| 511 | 511 | $error = static::getConnection()->errorInfo(); |
| 512 | 512 | $message = $error[2]; |
| 513 | 513 | |
| 514 | - if (App::$App->Config['environment']=='dev') { |
|
| 514 | + if (App::$App->Config['environment'] == 'dev') { |
|
| 515 | 515 | /** @var \Whoops\Handler\PrettyPageHandler */ |
| 516 | 516 | $Handler = \Divergence\App::$App->whoops->popHandler(); |
| 517 | 517 | |
@@ -555,7 +555,7 @@ discard block |
||
| 555 | 555 | */ |
| 556 | 556 | protected static function startQueryLog($query) |
| 557 | 557 | { |
| 558 | - if (App::$App->Config['environment']!='dev') { |
|
| 558 | + if (App::$App->Config['environment'] != 'dev') { |
|
| 559 | 559 | return false; |
| 560 | 560 | } |
| 561 | 561 | |