mirror of
https://github.com/danog/Valinor.git
synced 2024-12-04 02:27:54 +01:00
14 lines
200 B
PHP
14 lines
200 B
PHP
|
<?php
|
||
|
|
||
|
declare(strict_types=1);
|
||
|
|
||
|
namespace CuyZ\Valinor\Tests\Fixture\Enum;
|
||
|
|
||
|
/**
|
||
|
* @PHP8.1 Move to anonymous classes
|
||
|
*/
|
||
|
final class ClassWithBackedStringEnum
|
||
|
{
|
||
|
public BackedStringEnum $value;
|
||
|
}
|