Home
last modified time | relevance | path

Searched refs:songRepository (Results 1 – 16 of 16) sorted by relevance

/dports/audio/ampache/ampache-php74-5.0.0/src/Module/Application/Stream/
H A DPlayFavoriteAction.php42 private SongRepositoryInterface $songRepository; variable in Ampache\\Module\\Application\\Stream\\PlayFavoriteAction
47 SongRepositoryInterface $songRepository argument
51 $this->songRepository = $songRepository;
70 $this->songRepository->getByArtist((int) $value->id)
78 $this->songRepository->getByAlbum((int) $value->id)
H A DArtistRandomAction.php44 private SongRepositoryInterface $songRepository; variable in Ampache\\Module\\Application\\Stream\\ArtistRandomAction
50 SongRepositoryInterface $songRepository argument
55 $this->songRepository = $songRepository;
67 $this->songRepository->getRandomByArtist($artist),
/dports/audio/ampache/ampache-php74-5.0.0/src/Module/Album/Tag/
H A DAlbumTagUpdater.php32 private SongRepositoryInterface $songRepository; variable in Ampache\\Module\\Album\\Tag\\AlbumTagUpdater
35 SongRepositoryInterface $songRepository argument
37 $this->songRepository = $songRepository;
54 $songs = $this->songRepository->getByAlbum($album->id);
/dports/audio/ampache/ampache-php74-5.0.0/src/Application/Api/Ajax/Handler/
H A DRandomAjaxHandler.php43 private SongRepositoryInterface $songRepository; variable in Ampache\\Application\\Api\\Ajax\\Handler\\RandomAjaxHandler
47 SongRepositoryInterface $songRepository argument
50 $this->songRepository = $songRepository;
89 $allsongs = $this->songRepository->getByAlbum($disc->id);
96 $songs = $this->songRepository->getByAlbum($album->id);
111 $songs = $this->songRepository->getByArtist($artist_id);
H A DDefaultAjaxHandler.php45 private SongRepositoryInterface $songRepository; variable in Ampache\\Application\\Api\\Ajax\\Handler\\DefaultAjaxHandler
49 SongRepositoryInterface $songRepository argument
52 $this->songRepository = $songRepository;
135 $songs = $this->songRepository->getRandomByArtist($object);
H A DIndexAjaxHandler.php59 private SongRepositoryInterface $songRepository; variable in Ampache\\Application\\Api\\Ajax\\Handler\\IndexAjaxHandler
70 SongRepositoryInterface $songRepository, argument
78 $this->songRepository = $songRepository;
360 $object_ids = $this->songRepository->getByLabel($label->name);
/dports/audio/ampache/ampache-php74-5.0.0/src/Module/Application/Artist/
H A DShowAllSongsAction.php43 private SongRepositoryInterface $songRepository; variable in Ampache\\Module\\Application\\Artist\\ShowAllSongsAction
48 SongRepositoryInterface $songRepository argument
52 $this->songRepository = $songRepository;
68 'object_ids' => $this->songRepository->getByArtist($artistId),
/dports/audio/ampache/ampache-php74-5.0.0/src/Module/Song/Deletion/
H A DSongDeleter.php36 private SongRepositoryInterface $songRepository; variable in Ampache\\Module\\Song\\Deletion\\SongDeleter
42 SongRepositoryInterface $songRepository, argument
46 $this->songRepository = $songRepository;
59 $deleted = $this->songRepository->delete($songId);
/dports/audio/ampache/ampache-php74-5.0.0/src/Module/Album/Export/
H A DAlbumArtExporter.php48 private SongRepositoryInterface $songRepository; variable in Ampache\\Module\\Album\\Export\\AlbumArtExporter
54 SongRepositoryInterface $songRepository argument
59 $this->songRepository = $songRepository;
85 $songs = $this->songRepository->getByAlbum($albumId, 1);
/dports/audio/ampache/ampache-php74-5.0.0/src/Module/Album/Deletion/
H A DAlbumDeleter.php52 private SongRepositoryInterface $songRepository; variable in Ampache\\Module\\Album\\Deletion\\AlbumDeleter
64 SongRepositoryInterface $songRepository, argument
72 $this->songRepository = $songRepository;
85 $songIds = $this->songRepository->getByAlbum($albumId);
/dports/audio/ampache/ampache-php74-5.0.0/src/Module/Art/Collector/
H A DFolderCollectorModule.php46 private SongRepositoryInterface $songRepository; variable in Ampache\\Module\\Art\\Collector\\FolderCollectorModule
51 SongRepositoryInterface $songRepository argument
55 $this->songRepository = $songRepository;
101 $songs = $this->songRepository->getByAlbum((int) $media->id);
116 $songs = $this->songRepository->getByArtist((int) $media->id);
H A DMetaTagCollectorModule.php47 private SongRepositoryInterface $songRepository; variable in Ampache\\Module\\Art\\Collector\\MetaTagCollectorModule
52 SongRepositoryInterface $songRepository argument
56 $this->songRepository = $songRepository;
111 $songs = $this->songRepository->getByAlbum($art->uid);
113 $songs = $this->songRepository->getByArtist($art->uid);
/dports/audio/ampache/ampache-php74-5.0.0/tests/Module/Application/Artist/
H A DShowAllSongsActionTest.php44 private MockInterface $songRepository; variable in Ampache\\Module\\Application\\Artist\\ShowAllSongsActionTest
52 $this->songRepository = $this->mock(SongRepositoryInterface::class);
57 $this->songRepository
105 $this->songRepository->shouldReceive('getByArtist')
/dports/audio/ampache/ampache-php74-5.0.0/src/Module/Application/Batch/
H A DDefaultAction.php59 private SongRepositoryInterface $songRepository; variable in Ampache\\Module\\Application\\Batch\\DefaultAction
67 SongRepositoryInterface $songRepository argument
74 $this->songRepository = $songRepository;
154 … $media_ids = array_merge($media_ids, $this->songRepository->getByAlbum($album->id));
/dports/audio/ampache/ampache-php74-5.0.0/tests/Module/Album/Export/
H A DAlbumArtExporterTest.php53 private MockInterface $songRepository; variable in Ampache\\Module\\Album\\Export\\AlbumArtExporterTest
62 $this->songRepository = $this->mock(SongRepositoryInterface::class);
68 $this->songRepository
143 $this->songRepository->shouldReceive('getByAlbum')
207 $this->songRepository->shouldReceive('getByAlbum')
/dports/audio/ampache/ampache-php74-5.0.0/src/Module/Application/Playback/
H A DPlayAction.php68 private SongRepositoryInterface $songRepository; variable in Ampache\\Module\\Application\\Playback\\PlayAction
76 SongRepositoryInterface $songRepository, argument
82 $this->songRepository = $songRepository;
899 $songs = $this->songRepository->getByAlbum((int) $object->id);