ConsoleContracts/src/Attributes/Cmd.php

18 lines
263 B
PHP
Raw Normal View History

<?php
declare(strict_types=1);
namespace Phred\ConsoleContracts\Attributes;
use Attribute;
#[Attribute(Attribute::TARGET_CLASS)]
class Cmd
{
public function __construct(
public string $name,
public string $description = ''
) {
}
}