Files
Sentri/vendor/myclabs/php-enum/tests/InheritedEnumFixture.php
2026-05-10 21:40:25 +02: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';
}