File "enumWithConstant.php"
Full Path: /var/www/html/back/vendor/phpdocumentor/reflection/tests/integration/data/Enums/enumWithConstant.php
File size: 161 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
declare(strict_types=1);
namespace MyNamespace;
enum MyEnumWithConstant
{
public const MYCONST = 'MyConstValue';
public const INT_CONST = 0;
}