summaryrefslogtreecommitdiff
path: root/ext/mysqli/tests/056.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/mysqli/tests/056.phpt')
-rw-r--r--ext/mysqli/tests/056.phpt20
1 files changed, 10 insertions, 10 deletions
diff --git a/ext/mysqli/tests/056.phpt b/ext/mysqli/tests/056.phpt
index 413e678987..9bb3a0eba9 100644
--- a/ext/mysqli/tests/056.phpt
+++ b/ext/mysqli/tests/056.phpt
@@ -7,18 +7,18 @@ require_once('skipifconnectfailure.inc');
?>
--FILE--
<?php
- require_once("connect.inc");
+ require_once("connect.inc");
- class foobar extends mysqli {
- function test () {
- return ("I do not like MySQL 4.1");
- }
- }
+ class foobar extends mysqli {
+ function test () {
+ return ("I do not like MySQL 4.1");
+ }
+ }
- $foo = new foobar();
- $foo->connect($host, $user, $passwd, $db, $port, $socket);
- $foo->close();
- printf("%s\n", $foo->test());
+ $foo = new foobar();
+ $foo->connect($host, $user, $passwd, $db, $port, $socket);
+ $foo->close();
+ printf("%s\n", $foo->test());
?>
--EXPECT--
I do not like MySQL 4.1