1 | <?php |
||
8 | abstract class iDokladAbstractEnum implements iDokladEnumInterface |
||
9 | { |
||
10 | /** @var int $value */ |
||
11 | protected $value; |
||
12 | |||
13 | /** |
||
14 | * @return int |
||
15 | */ |
||
16 | public function createJson(): int |
||
20 | |||
21 | /** |
||
22 | * @return string |
||
23 | */ |
||
24 | public function __toString(): string |
||
28 | |||
29 | /** |
||
30 | * @param int $value |
||
31 | */ |
||
32 | public function __construct(int $value) |
||
36 | |||
37 | /** |
||
38 | * @return int |
||
39 | */ |
||
40 | public function getValue(): int |
||
44 | } |
||
45 |