mirror of
https://github.com/koel/koel
synced 2024-11-10 14:44:13 +00:00
a8a3baa478
This reverts commit 7cd5b230d4
.
17 lines
378 B
PHP
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);
|
|
}
|
|
}
|