koel/app/Values/Genre.php

18 lines
378 B
PHP
Raw Normal View History

2022-10-21 20:06:43 +00:00
<?php
namespace App\Values;
2022-10-21 20:06:43 +00:00
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);
}
}