mirror of
https://github.com/danog/Valinor.git
synced 2024-12-03 18:17:51 +01:00
12 lines
123 B
PHP
12 lines
123 B
PHP
|
<?php
|
||
|
|
||
|
declare(strict_types=1);
|
||
|
|
||
|
namespace CuyZ\Valinor\Tests\Fixture\Enum;
|
||
|
|
||
|
enum PureEnum
|
||
|
{
|
||
|
case FOO;
|
||
|
case BAR;
|
||
|
}
|