-
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
Apr 22, 2021
1 parent
215d6b3
commit 00fe11f
Showing
9 changed files
with
148 additions
and
150 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
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,29 @@ | ||
<?php declare(strict_types = 1); | ||
|
||
namespace HnutiBrontosaurus\BisApiClient\Response\Event; | ||
|
||
use Grifart\Enum\AutoInstances; | ||
use Grifart\Enum\Enum; | ||
|
||
|
||
/** | ||
* @method static ProgramType NONE() | ||
* @method static ProgramType NATURE() | ||
* @method static ProgramType SIGHTS() | ||
* @method static ProgramType BRDO() | ||
* @method static ProgramType EKOSTAN() | ||
* @method static ProgramType PSB() | ||
* @method static ProgramType EDUCATION() | ||
*/ | ||
final class ProgramType extends Enum | ||
{ | ||
use AutoInstances; | ||
|
||
protected const NONE = 'none'; | ||
protected const NATURE = 'ap'; | ||
protected const SIGHTS = 'pamatky'; | ||
protected const BRDO = 'brdo'; | ||
protected const EKOSTAN = 'ekostan'; | ||
protected const PSB = 'psb'; | ||
protected const EDUCATION = 'vzdelavani'; | ||
} |
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
Oops, something went wrong.