18 lines
263 B
PHP
18 lines
263 B
PHP
<?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 = ''
|
|
) {
|
|
}
|
|
}
|