File "backedEnum.php"
Full Path: /var/www/html/back/vendor/phpdocumentor/reflection/tests/integration/data/Enums/backedEnum.php
File size: 160 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
declare(strict_types=1);
namespace MyNamespace;
enum MyBackedEnum : string
{
case VALUE1 = 'this is value1';
case VALUE2 = 'this is value2';
}