opsdash-app/opsdash/tests/php/stubs/Symfony/Component/Console/Attribute/AsCommand.php
2026-05-14 13:48:45 +07:00

15 lines
274 B
PHP

<?php
declare(strict_types=1);
namespace Symfony\Component\Console\Attribute;
#[\Attribute(\Attribute::TARGET_CLASS)]
final class AsCommand {
public function __construct(
public string $name,
public string $description = '',
public bool $hidden = false,
) {
}
}