summaryrefslogtreecommitdiff
path: root/tests/classes/final.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/final.phpt
parentd2cb200e10ada6fa44c54a29292bb4665728fff0 (diff)
downloadphp-git-f8d795820e780a6322e054c26c581570613c14f0.tar.gz
Reindent phpt files
Diffstat (limited to 'tests/classes/final.phpt')
-rw-r--r--tests/classes/final.phpt12
1 files changed, 6 insertions, 6 deletions
diff --git a/tests/classes/final.phpt b/tests/classes/final.phpt
index 0e100d2304..75be8ec2f4 100644
--- a/tests/classes/final.phpt
+++ b/tests/classes/final.phpt
@@ -4,18 +4,18 @@ ZE2 A method may be redeclared final
<?php
class first {
- function show() {
- echo "Call to function first::show()\n";
- }
+ function show() {
+ echo "Call to function first::show()\n";
+ }
}
$t = new first();
$t->show();
class second extends first {
- final function show() {
- echo "Call to function second::show()\n";
- }
+ final function show() {
+ echo "Call to function second::show()\n";
+ }
}
$t2 = new second();