diff options
Diffstat (limited to 'ext/reflection/tests/ReflectionClass_FileInfo_basic.phpt')
-rw-r--r-- | ext/reflection/tests/ReflectionClass_FileInfo_basic.phpt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/reflection/tests/ReflectionClass_FileInfo_basic.phpt b/ext/reflection/tests/ReflectionClass_FileInfo_basic.phpt index da276e68cf..28769da707 100644 --- a/ext/reflection/tests/ReflectionClass_FileInfo_basic.phpt +++ b/ext/reflection/tests/ReflectionClass_FileInfo_basic.phpt @@ -1,6 +1,6 @@ --TEST-- ReflectionClass::getFileName(), ReflectionClass::getStartLine(), ReflectionClass::getEndLine() ---FILE-- +--FILE-- <?php //New instance of class C - defined below $rc = new ReflectionClass("C"); @@ -14,7 +14,7 @@ var_dump($rc->getStartLine()); //Get the line number at the end of the definition of class C var_dump($rc->getEndLine()); -//Same tests as above but stdclass is internal - so all results should be false. +//Same tests as above but stdclass is internal - so all results should be false. $rc = new ReflectionClass("stdClass"); var_dump($rc->getFileName()); var_dump($rc->getStartLine()); |