UserModel::pastUserThreshold PHP Метод

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

This is a useful indication that some database operations on the User table will be painfully long.
public pastUserThreshold ( ) : boolean
Результат boolean
    public function pastUserThreshold()
    {
        $estimate = $this->countEstimate();
        return $estimate > $this->UserThreshold;
    }
UserModel