Zend\Code\Generator\ClassGenerator::removeImplementedInterface PHP Méthode

removeImplementedInterface() public méthode

public removeImplementedInterface ( $implementedInterface ) : self
$implementedInterface
Résultat self
    public function removeImplementedInterface($implementedInterface)
    {
        $implementedInterface = (string) TypeGenerator::fromTypeString($implementedInterface);
        unset($this->implementedInterfaces[array_search($implementedInterface, $this->implementedInterfaces)]);
        return $this;
    }