mirror of
https://github.com/koel/koel
synced 2024-12-18 16:44:03 +00:00
15 lines
340 B
PHP
15 lines
340 B
PHP
<?php
|
|
|
|
namespace App\Services\Contracts;
|
|
|
|
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;
|
|
}
|