- update code generated by PSR-2 standards fixer which introduced PHP 5.4 incompatibilities of 14.7.2013

This commit is contained in:
Uwe.Tews@googlemail.com
2013-07-15 18:18:28 +00:00
parent 00ccae8857
commit 584886cb1c
18 changed files with 80 additions and 77 deletions

View File

@@ -35,7 +35,7 @@ class Smarty_CacheResource_Mysql extends Smarty_CacheResource_Custom
public function __construct()
{
try {
$this->db = new PDO("mysql:dbname=test;host=127.0.0.1", "smarty", "smarty");
$this->db = new PDO("mysql:dbname=test;host=127.0.0.1", "smarty");
} catch (PDOException $e) {
throw new SmartyException('Mysql Resource failed: ' . $e->getMessage());
}