mirror of
https://github.com/koel/koel
synced 2024-11-10 06:34:14 +00:00
a8a3baa478
This reverts commit 7cd5b230d4
.
15 lines
310 B
PHP
15 lines
310 B
PHP
<?php
|
|
|
|
namespace App\Values;
|
|
|
|
final class LastfmLoveTrackParameters
|
|
{
|
|
private function __construct(public string $trackName, public string $artistName)
|
|
{
|
|
}
|
|
|
|
public static function make(string $trackName, string $artistName): self
|
|
{
|
|
return new self($trackName, $artistName);
|
|
}
|
|
}
|