Handler.php
<?php
namespace ROF\Business;
class Handler extends \ROF\MVC\Handler {
static public function getDefaultParam(){
return 'biz';
}
static public function getDefaultView(){
return "Business";
}
}
?>