-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Daniel Kurowski
committed
Nov 28, 2023
1 parent
fdf3072
commit 31735bf
Showing
3 changed files
with
47 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
<?php declare(strict_types = 1); | ||
|
||
namespace HnutiBrontosaurus\BisClient\Event; | ||
|
||
use Grifart\Enum\AutoInstances; | ||
use Grifart\Enum\Enum; | ||
|
||
|
||
/** | ||
* @method static Tag RETRO_EVENT() | ||
* @method static Tag REGION_EVENT() | ||
*/ | ||
final class Tag extends Enum | ||
{ | ||
use AutoInstances; | ||
|
||
protected const RETRO_EVENT = 'retro_event'; | ||
protected const REGION_EVENT = 'region_event'; | ||
} |