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