summaryrefslogtreecommitdiff
path: root/tests/classes/constants_comments_001.phpt
diff options
context:
space:
mode:
authorNikita Popov <nikita.ppv@gmail.com>2020-02-03 22:52:20 +0100
committerNikita Popov <nikita.ppv@gmail.com>2020-02-03 22:52:20 +0100
commitf8d795820e780a6322e054c26c581570613c14f0 (patch)
tree99d3ae01ce564752807341c5743863b4c92513f8 /tests/classes/constants_comments_001.phpt
parentd2cb200e10ada6fa44c54a29292bb4665728fff0 (diff)
downloadphp-git-f8d795820e780a6322e054c26c581570613c14f0.tar.gz
Reindent phpt files
Diffstat (limited to 'tests/classes/constants_comments_001.phpt')
-rw-r--r--tests/classes/constants_comments_001.phpt22
1 files changed, 11 insertions, 11 deletions
diff --git a/tests/classes/constants_comments_001.phpt b/tests/classes/constants_comments_001.phpt
index 297ad9f956..46bf4fafff 100644
--- a/tests/classes/constants_comments_001.phpt
+++ b/tests/classes/constants_comments_001.phpt
@@ -5,22 +5,22 @@ opcache.save_comments=1
--FILE--
<?php
class X {
- /** comment X1 */
- const X1 = 1;
- const X2 = 2;
- /** comment X3 */
- const X3 = 3;
+ /** comment X1 */
+ const X1 = 1;
+ const X2 = 2;
+ /** comment X3 */
+ const X3 = 3;
}
class Y extends X {
- /** comment Y1 */
- const Y1 = 1;
- const Y2 = 2;
- /** comment Y3 */
- const Y3 = 3;
+ /** comment Y1 */
+ const Y1 = 1;
+ const Y2 = 2;
+ /** comment Y3 */
+ const Y3 = 3;
}
$r = new ReflectionClass('Y');
foreach ($r->getReflectionConstants() as $rc) {
- echo $rc->getName() . " : " . $rc->getDocComment() . "\n";
+ echo $rc->getName() . " : " . $rc->getDocComment() . "\n";
}