summaryrefslogtreecommitdiff
path: root/tests/classes/abstract_redeclare.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'tests/classes/abstract_redeclare.phpt')
-rw-r--r--tests/classes/abstract_redeclare.phpt8
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/classes/abstract_redeclare.phpt b/tests/classes/abstract_redeclare.phpt
index 5643cb7a61..843570ba2e 100644
--- a/tests/classes/abstract_redeclare.phpt
+++ b/tests/classes/abstract_redeclare.phpt
@@ -4,13 +4,13 @@ ZE2 A method cannot be redeclared abstract
<?php
class pass {
- function show() {
- echo "Call to function show()\n";
- }
+ function show() {
+ echo "Call to function show()\n";
+ }
}
class fail extends pass {
- abstract function show();
+ abstract function show();
}
echo "Done\n"; // Shouldn't be displayed