예제 #1
0
파일: Finder.php 프로젝트: awpeak/rutuber
 /**
  * @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);
 }