LdapTools\Operation\QueryOperation::__clone PHP Method

__clone() public method

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'];
        }
    }