summaryrefslogtreecommitdiff
path: root/Zend/tests/indirect_method_call_005.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'Zend/tests/indirect_method_call_005.phpt')
-rw-r--r--Zend/tests/indirect_method_call_005.phpt6
1 files changed, 3 insertions, 3 deletions
diff --git a/Zend/tests/indirect_method_call_005.phpt b/Zend/tests/indirect_method_call_005.phpt
index 4f4b3631c0..d3e2de2c84 100644
--- a/Zend/tests/indirect_method_call_005.phpt
+++ b/Zend/tests/indirect_method_call_005.phpt
@@ -4,9 +4,9 @@ Testing array dereferencing from instance with ArrayObject
<?php
class foo extends ArrayObject {
- public function __construct($arr) {
- parent::__construct($arr);
- }
+ public function __construct($arr) {
+ parent::__construct($arr);
+ }
}
var_dump( (new foo( array(1, array(4, 5), 3) ))[1][0] ); // int(4)