Example #1
0
 /**
  * カウントアップ
  */
 public function countUp()
 {
     for ($i = 1; $i <= $this->maxNum; $i++) {
         if ($this->rule->isAho($i)) {
             $this->action->actAsAho($i);
         } else {
             $this->action->actAsNormal($i);
         }
     }
 }