4
0
mirror of https://github.com/AzuraCast/AzuraCast.git synced 2024-06-14 13:16:37 +00:00
AzuraCast/src/Radio/Enums/LiquidsoapQueues.php

17 lines
263 B
PHP
Raw Normal View History

<?php
declare(strict_types=1);
namespace App\Radio\Enums;
enum LiquidsoapQueues: string
{
case Requests = 'requests';
case Interrupting = 'interrupting_requests';
public static function default(): self
{
return self::Requests;
}
}