Navigation Menu

Skip to content

Commit

Permalink
Fixed CS errors.
Browse files Browse the repository at this point in the history
  • Loading branch information
robertpustulka committed Sep 9, 2014
1 parent 98fcded commit 291a73e
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions src/Database/Driver.php
Expand Up @@ -322,7 +322,7 @@ public function __destruct() {
*
* @return array
*/
public function __debugInfo() {
public function __debugInfo() {
$secrets = [
'password' => '*****',
'login' => '*****',
Expand All @@ -333,15 +333,15 @@ public function __debugInfo() {
'schema' => '*****'
];
$replace = array_intersect_key($secrets, $this->_config);
return [
'_baseConfig' => $replace + $this->_baseConfig,
'_config' => $replace + $this->_config,
'_autoQuoting' => $this->_autoQuoting,
'_startQuote' => $this->_startQuote,
'_endQuote' => $this->_endQuote,
'_schemaDialect' => get_class($this->_schemaDialect)
];
}

return [
'_baseConfig' => $replace + $this->_baseConfig,
'_config' => $replace + $this->_config,
'_autoQuoting' => $this->_autoQuoting,
'_startQuote' => $this->_startQuote,
'_endQuote' => $this->_endQuote,
'_schemaDialect' => get_class($this->_schemaDialect)
];
}

}

0 comments on commit 291a73e

Please sign in to comment.