You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
348 B
15 lines
348 B
1 week ago
|
<?php
|
||
|
|
||
|
namespace Auxilium\Schemas;
|
||
|
|
||
|
use Darksparrow\AuxiliumSchemaBuilder\Attributes\SchemaDocument;
|
||
|
|
||
|
#[SchemaDocument(
|
||
|
Name: "enum",
|
||
|
Comment: "This is intended as an inheritable schema used to signify to software that it SHOULD be interpreted as a enumerable choice value that can be decoded based on its schema",
|
||
|
)]
|
||
|
class EnumSchema
|
||
|
{
|
||
|
|
||
|
}
|