summaryrefslogtreecommitdiff
path: root/Zend/tests/traits/methods_001.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'Zend/tests/traits/methods_001.phpt')
-rw-r--r--Zend/tests/traits/methods_001.phpt8
1 files changed, 4 insertions, 4 deletions
diff --git a/Zend/tests/traits/methods_001.phpt b/Zend/tests/traits/methods_001.phpt
index e1ee8152a6..758234f2d5 100644
--- a/Zend/tests/traits/methods_001.phpt
+++ b/Zend/tests/traits/methods_001.phpt
@@ -3,19 +3,19 @@ Testing magic method on trait
--FILE--
<?php
-trait foo {
+trait foo {
public function __toString() {
return '123';
}
-
+
public function __get($x) {
var_dump($x);
}
-
+
public function __set($attr, $val) {
var_dump($attr .'==='. $val);
}
-
+
public function __clone() {
var_dump(__FUNCTION__);
}