Skip to content

Commit 80156d4

Browse files
committed
Add workbench fixture for class constant and enum attribute parsing
1 parent 8e1cf65 commit 80156d4

1 file changed

Lines changed: 12 additions & 0 deletions

File tree

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
<?php
2+
3+
namespace App\Models;
4+
5+
use App\Attributes\ModelInfo;
6+
use App\Enums\AnimalType;
7+
use App\Interfaces\AnimalInterface;
8+
9+
#[ModelInfo(ParentAnimal::class, AnimalType::Dog)]
10+
class AttributeClassAndEnumReferenceAnimal implements AnimalInterface
11+
{
12+
}

0 commit comments

Comments
 (0)