PHP Abstract Class and Interface

Abstract class Abstraction is a way of hiding information . In abstraction there should be at least one method which must be declared but not defined. The class that inherit this abstract class need to define that method. There must be a abstract keyword that must be return before this class for it to be … Continue reading PHP Abstract Class and Interface