Neos\Flow\Aop\Builder\ProxyClassBuilder::getInterfaceNamesFromIntroductions PHP Метод

getInterfaceNamesFromIntroductions() защищенный Метод

Returns an array of interface names introduced by the given introductions
protected getInterfaceNamesFromIntroductions ( array $interfaceIntroductions ) : array
$interfaceIntroductions array An array of interface introductions
Результат array Array of interface names
    protected function getInterfaceNamesFromIntroductions(array $interfaceIntroductions)
    {
        $interfaceNames = [];
        foreach ($interfaceIntroductions as $introduction) {
            $interfaceNames[] = '\\' . $introduction->getInterfaceName();
        }
        return $interfaceNames;
    }