Exemple #1
0
 public function getRequest($amount, $start, $gas, $available, $offset)
 {
     $rs = array();
     $amount = intval($amount);
     $offset = intval($offset);
     $model = new Model_Request();
     $rs = $model->getRequest($amount, $start, $gas, $available, $offset);
     return $rs;
 }