2.4k questions

2.4k answers

99.5k users

Categories

0 votes
84 views
in oop php what are abstract classes and methods ?
in General by (95.8k points)

1 Answer

0 votes

Abstract classes and methods are when the parent class has a named method, but need its child class(es) to fill out the tasks. An abstract class is a class that contains at least one abstract method. An abstract method is a method that is declared, but not implemented in the code.

by (95.8k points)
...