|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2006-07-26 16:38 UTC] tony2001@php.net
[2006-08-07 08:35 UTC] helly@php.net
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sat Nov 08 14:00:01 2025 UTC |
Description: ------------ abstract static functions aren't allowed anymore, but if they can be inherited they IMHO should be allowed to be made abstract Reproduce code: --------------- <?php abstract class foo { abstract static public function bar(); } class bar extends foo { static public function bar() { } } ?> Actual result: -------------- Fatal error: Static function foo::bar() cannot be abstract