summaryrefslogtreecommitdiff
path: root/ext/reflection/tests/ReflectionObject_FileInfo_error.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/reflection/tests/ReflectionObject_FileInfo_error.phpt')
-rw-r--r--ext/reflection/tests/ReflectionObject_FileInfo_error.phpt6
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/reflection/tests/ReflectionObject_FileInfo_error.phpt b/ext/reflection/tests/ReflectionObject_FileInfo_error.phpt
index d30e677178..70ad24297d 100644
--- a/ext/reflection/tests/ReflectionObject_FileInfo_error.phpt
+++ b/ext/reflection/tests/ReflectionObject_FileInfo_error.phpt
@@ -1,6 +1,6 @@
--TEST--
-ReflectionObject::getFileName(), ReflectionObject::getStartLine(), ReflectionObject::getEndLine() -invalid aparams
---FILE--
+ReflectionObject::getFileName(), ReflectionObject::getStartLine(), ReflectionObject::getEndLine() -invalid aparams
+--FILE--
<?php
Class C { }
@@ -10,7 +10,7 @@ $methods = array("getFileName", "getStartLine", "getEndLine");
foreach ($methods as $method) {
var_dump($rc->$method());
var_dump($rc->$method(null));
- var_dump($rc->$method('X', 0));
+ var_dump($rc->$method('X', 0));
}
?>
--EXPECTF--