11 lines
218 B
PHP
11 lines
218 B
PHP
<?php
|
|
|
|
namespace Notes\CLI\Attribute;
|
|
|
|
use Attribute;
|
|
|
|
#[Attribute(Attribute::IS_REPEATABLE | Attribute::TARGET_METHOD | Attribute::TARGET_CLASS)]
|
|
class Option extends \Mcnd\CLI\Option implements \Notes\Attribute {
|
|
|
|
}
|