LdapTools\Operation\QueryOperation::__clone PHP 메소드

__clone() 공개 메소드

Make sure to clone an OperatorCollection instance.
public __clone ( )
    public function __clone()
    {
        if ($this->properties['filter'] instanceof OperatorCollection) {
            $this->properties['filter'] = clone $this->properties['filter'];
        }
    }