Files
Sentri/vendor/myclabs/php-enum/tests/InheritedEnumFixture.php
2026-01-01 10:54:18 +01:00

15 lines
236 B
PHP

<?php
namespace MyCLabs\Tests\Enum;
/**
* Class InheritedEnumFixture.
* @package MyCLabs\Tests\Enum
*
* @method static InheritedEnumFixture VALUE()
*/
class InheritedEnumFixture extends EnumFixture
{
const VALUE = 'value';
}