123456789101112131415161718192021 |
- --TEST--
- Final private constructors cannot be overridden
- --FILE--
- <?php
- class Base
- {
- private final function __construct()
- {
- }
- }
- class Extended extends Base
- {
- public function __construct()
- {
- }
- }
- ?>
- --EXPECTF--
- Fatal error: Cannot override final method Base::__construct() in %s on line %d
|