yii\sphinx\ActiveRecord::equals PHP Метод

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

The comparison is made by comparing the index names and the primary key values of the two active records. If one of the records [[isNewRecord|is new]] they are also considered not equal.
public equals ( ActiveRecord $record ) : boolean
$record ActiveRecord record to compare to
Результат boolean whether the two active records refer to the same row in the same index.
    public function equals($record)
    {
        if ($this->isNewRecord || $record->isNewRecord) {
            return false;
        }
        return $this->indexName() === $record->indexName() && $this->getPrimaryKey() === $record->getPrimaryKey();
    }