Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

Class %s cannot extend %s %s

Description

A class that is marked final cannot be extended. This error applies to a class that tries to use a final class as parent.

Example

<?php

final class X {}

class Y extends X {}

?>

Literal Examples

  • Class T cannot extend class X

Alternatives

  • Remove the final keyword on the parent class.
  • Use composition in the intended child class.