mirror of
https://github.com/koel/koel
synced 2024-11-10 14:44:13 +00:00
22 lines
510 B
PHP
22 lines
510 B
PHP
<?php
|
|
|
|
namespace App\Services;
|
|
|
|
use App\Models\Album;
|
|
use App\Models\Artist;
|
|
use App\Services\Contracts\MusicEncyclopedia;
|
|
use App\Values\AlbumInformation;
|
|
use App\Values\ArtistInformation;
|
|
|
|
class NullMusicEncyclopedia implements MusicEncyclopedia
|
|
{
|
|
public function getArtistInformation(Artist $artist): ?ArtistInformation
|
|
{
|
|
return ArtistInformation::make();
|
|
}
|
|
|
|
public function getAlbumInformation(Album $album): ?AlbumInformation
|
|
{
|
|
return AlbumInformation::make();
|
|
}
|
|
}
|