Php/docs/reflectionclass.implementsinterface
From Get docs
ReflectionClass::implementsInterface
(PHP 5, PHP 7)
ReflectionClass::implementsInterface — Implements interface
Description
public ReflectionClass::implementsInterface
( ReflectionClass|string $interface
) : bool
Checks whether it implements an interface.
Parameters
interface- The interface name.
Return Values
Returns TRUE on success or FALSE on failure.
Errors/Exceptions
ReflectionClass::implementsInterface() throws an
ReflectionException if interface
is not an interface.
See Also
- ReflectionClass::isInterface() - Checks if the class is an interface
- ReflectionClass::isSubclassOf() - Checks if a subclass
- interface_exists() - Checks if the interface has been defined
- Object Interfaces