Example #1
0
 /**
  * @param int $page
  * @param int $per_page
  * @return mixed
  */
 public static function getMainPageVideoList($page = self::DEFAULT_PAGE, $per_page = self::DEFAULT_PER_PAGE)
 {
     $params = ['page' => abs((int) $page), 'limit' => abs((int) $per_page)];
     return Request::getMainPageVideoList($params);
 }