summaryrefslogtreecommitdiff
path: root/tests/classes/constants_comments_001.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'tests/classes/constants_comments_001.phpt')
-rw-r--r--tests/classes/constants_comments_001.phpt8
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/classes/constants_comments_001.phpt b/tests/classes/constants_comments_001.phpt
index dbdd67c332..297ad9f956 100644
--- a/tests/classes/constants_comments_001.phpt
+++ b/tests/classes/constants_comments_001.phpt
@@ -5,17 +5,17 @@ opcache.save_comments=1
--FILE--
<?php
class X {
- /** comment X1 */
+ /** comment X1 */
const X1 = 1;
const X2 = 2;
- /** comment X3 */
+ /** comment X3 */
const X3 = 3;
}
class Y extends X {
- /** comment Y1 */
+ /** comment Y1 */
const Y1 = 1;
const Y2 = 2;
- /** comment Y3 */
+ /** comment Y3 */
const Y3 = 3;
}
$r = new ReflectionClass('Y');