UserModel::pastUserMegaThreshold PHP 메소드

pastUserMegaThreshold() 공개 메소드

Whether we're wandered into extreme database optimization territory with our user count.
public pastUserMegaThreshold ( ) : boolean
리턴 boolean
    public function pastUserMegaThreshold()
    {
        $estimate = $this->countEstimate();
        return $estimate > $this->UserMegaThreshold;
    }
UserModel