koel/app/Values/Genre.php
2023-08-20 17:24:56 +02:00

17 lines
378 B
PHP

<?php
namespace App\Values;
final class Genre
{
public const NO_GENRE = 'No Genre';
private function __construct(public string $name, public int $songCount, public float $length)
{
}
public static function make(string $name, int $songCount, float $length): self
{
return new self(name: $name, songCount: $songCount, length: $length);
}
}