PhpParser\Builder\Class_::implement PHP Method

implement() public method

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