You can inherit number of interface class at the time of extending and number of abstract class separated by comma.
All methods in the interface must be implemented within a child class; failure to do so will result in a fatal error.
Interfaces can be extended like classes using the extends operator.
The class implementing the interface must use the exact same method signatures as are defined in the interface. Not doing so will result in a fatal error.