Commit 9785286b authored by Steve Müller's avatar Steve Müller

fix code style

parent b26d9e77
...@@ -43,11 +43,14 @@ class PDOPgsqlConnectionTest extends DbalFunctionalTestCase ...@@ -43,11 +43,14 @@ class PDOPgsqlConnectionTest extends DbalFunctionalTestCase
$this->assertEquals($charset, $connection->query("SHOW client_encoding")->fetch(\PDO::FETCH_COLUMN)); $this->assertEquals($charset, $connection->query("SHOW client_encoding")->fetch(\PDO::FETCH_COLUMN));
} }
/**
* @return array
*/
public function getValidCharsets() public function getValidCharsets()
{ {
return array( return array(
array("UTF8"), array("UTF8"),
array("LATIN1") array("LATIN1")
); );
} }
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment