Storm\Core\Relational\Row::HasPrimaryKey PHP Метод

HasPrimaryKey() закрытый публичный Метод

Whether or not the row has a complete primary key.
final public HasPrimaryKey ( ) : boolean
Результат boolean
    public final function HasPrimaryKey()
    {
        return count(array_filter($this->PrimaryKey->GetData(), function ($Value) {
            return $Value !== null;
        })) === $this->PrimaryKeyColumnsAmount;
    }