コード例 #1
0
ファイル: photo_service.php プロジェクト: vazahat/dudex
 public function getNextPhotoId($albumId, $id)
 {
     $next = $this->photoDao->getNextPhoto($albumId, $id);
     return $next ? $next->id : null;
 }