static function count_with($number)
 {
     $counter = new Counter();
     $count = $counter->count_with($number);
     set('count', $count);
     return html('index.html.php');
 }
Ejemplo n.º 2
0
 static function count()
 {
     return Counter::count_with(1);
 }