mirror of
https://github.com/koel/koel
synced 2024-12-20 01:23:16 +00:00
16 lines
330 B
PHP
16 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;
|
||
|
}
|