Browse Source

enum for existence values

pull/2/head
Cerys 4 months ago
parent
commit
7c6da14f84
  1. 10
      src/Enumerators/SchemaFieldExistence.php

10
src/Enumerators/SchemaFieldExistence.php

@ -0,0 +1,10 @@
<?php
namespace Darksparrow\DeegraphPHP\Enumerators;
enum SchemaFieldExistence: string
{
case MUST = "MUST";
case SHOULD = "SHOULD";
case MAY = "MAY";
}
Loading…
Cancel
Save