mirror of
https://github.com/koel/koel
synced 2024-11-10 14:44:13 +00:00
31 lines
579 B
PHP
31 lines
579 B
PHP
<?php
|
|
|
|
namespace App\Events;
|
|
|
|
use App\Models\Artist;
|
|
use Illuminate\Queue\SerializesModels;
|
|
|
|
class ArtistInformationFetched
|
|
{
|
|
use SerializesModels;
|
|
|
|
private Artist $artist;
|
|
private array $information;
|
|
|
|
public function __construct(Artist $artist, array $information)
|
|
{
|
|
$this->artist = $artist;
|
|
$this->information = $information;
|
|
}
|
|
|
|
public function getArtist(): Artist
|
|
{
|
|
return $this->artist;
|
|
}
|
|
|
|
/** @return array<mixed> */
|
|
public function getInformation(): array
|
|
{
|
|
return $this->information;
|
|
}
|
|
}
|