2021-06-04 16:19:34 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Values;
|
|
|
|
|
|
|
|
use Illuminate\Contracts\Support\Arrayable;
|
|
|
|
use JsonSerializable;
|
|
|
|
|
|
|
|
final class UserPreferences implements Arrayable, JsonSerializable
|
|
|
|
{
|
2021-06-05 10:47:56 +00:00
|
|
|
public ?string $lastFmSessionKey = null;
|
2021-06-04 16:19:34 +00:00
|
|
|
|
|
|
|
private function __construct(?string $lastFmSessionKey)
|
|
|
|
{
|
|
|
|
$this->lastFmSessionKey = $lastFmSessionKey;
|
|
|
|
}
|
|
|
|
|
|
|
|
public static function make(?string $lastFmSessionKey = null): self
|
|
|
|
{
|
|
|
|
return new self($lastFmSessionKey);
|
|
|
|
}
|
|
|
|
|
|
|
|
/** @return array<mixed> */
|
|
|
|
public function toArray(): array
|
|
|
|
{
|
|
|
|
return ['lastfm_session_key' => $this->lastFmSessionKey];
|
|
|
|
}
|
|
|
|
|
|
|
|
/** @return array<mixed> */
|
|
|
|
public function jsonSerialize(): array
|
|
|
|
{
|
|
|
|
return $this->toArray();
|
|
|
|
}
|
|
|
|
}
|