-
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
Showing
3 changed files
with
72 additions
and
1 deletion.
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,44 @@ | ||
<?php declare(strict_types = 1); | ||
|
||
namespace HnutiBrontosaurus\BisClient\Event\Request; | ||
|
||
use Grifart\Enum\AutoInstances; | ||
use Grifart\Enum\Enum; | ||
|
||
|
||
/** | ||
* @method static Region PRAHA() | ||
* @method static Region STREDOCESKY() | ||
* @method static Region JIHOCESKY() | ||
* @method static Region PLZENSKY() | ||
* @method static Region KARLOVARSKY() | ||
* @method static Region USTECKY() | ||
* @method static Region LIBERECKY() | ||
* @method static Region KRALOVEHRADECKY() | ||
* @method static Region PARDUBICKY() | ||
* @method static Region VYSOCINA() | ||
* @method static Region JIHOMORAVSKY() | ||
* @method static Region OLOMOUCKY() | ||
* @method static Region MORAVSKOSLEZSKY() | ||
* @method static Region ZLINSKY() | ||
*/ | ||
final class Region extends Enum | ||
{ | ||
use AutoInstances; | ||
|
||
protected const PRAHA = 1; | ||
protected const STREDOCESKY = 2; | ||
protected const JIHOCESKY = 3; | ||
protected const PLZENSKY = 4; | ||
protected const KARLOVARSKY = 5; | ||
protected const USTECKY = 6; | ||
protected const LIBERECKY = 7; | ||
protected const KRALOVEHRADECKY = 8; | ||
protected const PARDUBICKY = 9; | ||
protected const VYSOCINA = 10; | ||
protected const JIHOMORAVSKY = 11; | ||
protected const OLOMOUCKY = 12; | ||
protected const MORAVSKOSLEZSKY = 13; | ||
protected const ZLINSKY = 14; | ||
|
||
} |