[Solved] Can we create abstract class without abstract method in php? [closed]

An abstract class is a class that cannot be instantiated and must be extended by child classes. Any abstract methods in an abstract class must be implemented by an extending child class (or it must also be abstract). It’s possible to have an abstract class without abstract methods to be implemented; but that’s not particularly … Read more