Example #1
0
 public function getThreatDescription()
 {
     $threat = $this->response->getThreat();
     if ($threat < 26) {
         return '100 [msg/day]';
     }
     if ($threat > 25 & $threat < 51) {
         return '10,000 [msg/day]';
     }
     return '1,000,000 [msg/day]';
 }