Update test

This commit is contained in:
uno-sw
2024-08-02 13:21:45 +09:00
parent 51fb97b8fb
commit 7d2ea97f25
4 changed files with 73 additions and 34 deletions
@@ -0,0 +1,12 @@
<?php
declare(strict_types=1);
namespace Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\AdvancedCasts\Enums;
enum AdvancedCastEnum
{
case apple;
case banana;
case orange;
}