summaryrefslogtreecommitdiff
path: root/Zend/tests/ns_055.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'Zend/tests/ns_055.phpt')
-rw-r--r--Zend/tests/ns_055.phpt18
1 files changed, 9 insertions, 9 deletions
diff --git a/Zend/tests/ns_055.phpt b/Zend/tests/ns_055.phpt
index 16e3e69777..9df9c2b007 100644
--- a/Zend/tests/ns_055.phpt
+++ b/Zend/tests/ns_055.phpt
@@ -5,15 +5,15 @@
namespace test\ns1;
class Foo {
- function test1(Foo $x) {
- echo "ok\n";
- }
- function test2(\test\ns1\Foo $x) {
- echo "ok\n";
- }
- function test3(\Exception $x) {
- echo "ok\n";
- }
+ function test1(Foo $x) {
+ echo "ok\n";
+ }
+ function test2(\test\ns1\Foo $x) {
+ echo "ok\n";
+ }
+ function test3(\Exception $x) {
+ echo "ok\n";
+ }
}
$foo = new Foo();