Prado\Web\UI\ActiveControls\TScalarDiff::getDifference PHP Метод

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

public getDifference ( ) : mixed
Результат mixed update viewstate value.
    public function getDifference()
    {
        if (gettype($this->_new) === gettype($this->_old) && $this->_new === $this->_old) {
            return $this->_null;
        } else {
            return $this->_new;
        }
    }
TScalarDiff