add to be backed enum expectation

This commit is contained in:
JonPurvis
2023-11-18 03:31:35 +00:00
parent bd6b166a62
commit 2e01776272
8 changed files with 150 additions and 0 deletions

View File

@ -0,0 +1,10 @@
<?php
declare(strict_types=1);
namespace Tests\Fixtures\Arch\ToBeIntBackedEnum\HasStringBacking;
enum HasStringBackingEnum: string
{
case StringBacked = 'Testing';
}