Nette\Reflection\ClassType::getInterfaces PHP Method

getInterfaces() public method

public getInterfaces ( ) : self[]
return self[]
    public function getInterfaces()
    {
        $res = [];
        foreach (parent::getInterfaceNames() as $val) {
            $res[$val] = new static($val);
        }
        return $res;
    }