developers-task/src/Options/Short.php

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')) . ':';
}
}