mirror of
https://github.com/danog/Valinor.git
synced 2024-11-27 04:34:48 +01:00
12 lines
149 B
PHP
12 lines
149 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace CuyZ\Valinor\Tests\Fixture\Enum;
|
|
|
|
enum BackedIntegerEnum: int
|
|
{
|
|
case FOO = 42;
|
|
case BAR = 1337;
|
|
}
|