PhpParser\Builder\Class_::implement PHP Метод

implement() публичный Метод

Implements one or more interfaces.
public implement ( )
    public function implement()
    {
        foreach (func_get_args() as $interface) {
            $this->implements[] = $this->normalizeName($interface);
        }
        return $this;
    }