Skip to content
Advertisement

How to declare abstract method in non-abstract class in PHP?

JavaScript

reports:

PHP Fatal error: Class absclass contains 1 abstract method and must therefore be declared abstract or implement the remaining methods (absclass::fuc)

I want to know what it means by implement the remaining methods,how?

Advertisement

Answer

I presume that remaining methods actually refers to the abstract methods you’re trying to define (in this case, fuc()), since the non-abstract methods that might exist are okay anyway. It’s probably an error message that could use a more precise wording: where it says remaining it could have said abstract.

The fix is pretty straightforward (that part of the error message is fine): you need to change this:

JavaScript

… into a proper implementation:

JavaScript

… or, alternatively and depending your needs, make the whole class abstract:

JavaScript
User contributions licensed under: CC BY-SA
9 People found this is helpful
Advertisement