FinalClassExtended
A class extends a class declared as final.
Example
Section titled “Example”<?phpfinal class Singleton {}
class MyClass extends Singleton {} // cannot extend final classHow to fix
Section titled “How to fix”Remove the final keyword from the parent class or do not extend it.