UserModel::pastUserThreshold PHP Méthode

pastUserThreshold() public méthode

This is a useful indication that some database operations on the User table will be painfully long.
public pastUserThreshold ( ) : boolean
Résultat boolean
    public function pastUserThreshold()
    {
        $estimate = $this->countEstimate();
        return $estimate > $this->UserThreshold;
    }
UserModel