Pinq\Expressions\TernaryExpression::__clone PHP Метод

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

public __clone ( )
    public function __clone()
    {
        $this->condition = clone $this->condition;
        $this->ifTrue = $this->ifTrue === null ? null : clone $this->ifTrue;
        $this->ifFalse = clone $this->ifFalse;
    }