mirror of
https://github.com/koel/koel
synced 2024-11-15 00:47:18 +00:00
15 lines
330 B
PHP
15 lines
330 B
PHP
<?php
|
|
|
|
namespace App\Services;
|
|
|
|
use App\Models\Album;
|
|
use App\Models\Artist;
|
|
use App\Values\AlbumInformation;
|
|
use App\Values\ArtistInformation;
|
|
|
|
interface MusicEncyclopedia
|
|
{
|
|
public function getArtistInformation(Artist $artist): ?ArtistInformation;
|
|
|
|
public function getAlbumInformation(Album $album): ?AlbumInformation;
|
|
}
|