summaryrefslogtreecommitdiff
path: root/tests/classes/abstract_not_declared.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'tests/classes/abstract_not_declared.phpt')
-rw-r--r--tests/classes/abstract_not_declared.phpt2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/classes/abstract_not_declared.phpt b/tests/classes/abstract_not_declared.phpt
index 8c2d880150..611cb3cc94 100644
--- a/tests/classes/abstract_not_declared.phpt
+++ b/tests/classes/abstract_not_declared.phpt
@@ -4,7 +4,7 @@ ZE2 An abstract class must be declared abstract
<?php
class fail {
- abstract function show();
+ abstract function show();
}
echo "Done\n"; // shouldn't be displayed