summaryrefslogtreecommitdiff
path: root/ext/pdo/tests/bug_61292.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/pdo/tests/bug_61292.phpt')
-rw-r--r--ext/pdo/tests/bug_61292.phpt20
1 files changed, 10 insertions, 10 deletions
diff --git a/ext/pdo/tests/bug_61292.phpt b/ext/pdo/tests/bug_61292.phpt
index f82619d20e..07501d594f 100644
--- a/ext/pdo/tests/bug_61292.phpt
+++ b/ext/pdo/tests/bug_61292.phpt
@@ -15,25 +15,25 @@ require_once getenv('REDIR_TEST_DIR') . 'pdo_test.inc';
class Database_SQL extends PDO
{
- function __construct()
- {
+ function __construct()
+ {
$dsn = getenv('PDOTEST_DSN');
$user = getenv('PDOTEST_USER');
$pass = getenv('PDOTEST_PASS');
if ($user === false) $user = NULL;
if ($pass === false) $pass = NULL;
- $options = array(PDO::ATTR_PERSISTENT => TRUE);
+ $options = array(PDO::ATTR_PERSISTENT => TRUE);
- parent::__construct($dsn, $user, $pass, $options);
- }
+ parent::__construct($dsn, $user, $pass, $options);
+ }
- var $bar = array();
+ var $bar = array();
- public function foo()
- {
- var_dump($this->bar);
- }
+ public function foo()
+ {
+ var_dump($this->bar);
+ }
}
(new Database_SQL)->foo();