Files
developers-task/src/Options/Short.php
T
2023-07-26 18:21:51 +02:00

17 lines
256 B
PHP

<?php
declare(strict_types=1);
namespace App\Options;
enum Short: string
{
case ACTION = 'a';
case FILE = 'f';
public static function asString(): string
{
return implode(':', array_column(self::cases(), 'value')) . ':';
}
}