Total Complexity | 6 |
Total Lines | 30 |
Duplicated Lines | 0 % |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
8 | class TestApplicationInboundEvent extends ApplicationInboundEvent |
||
9 | { |
||
10 | public function string(string $fieldName, bool $nullable = false): ?string |
||
11 | { |
||
12 | return parent::string($fieldName, $nullable); |
||
13 | } |
||
14 | |||
15 | public function int(string $fieldName, bool $nullable = false): ?int |
||
18 | } |
||
19 | |||
20 | public function array(string $fieldName, bool $nullable = false): ?array |
||
21 | { |
||
22 | return parent::array($fieldName, $nullable); // TODO: Change the autogenerated stub |
||
23 | } |
||
24 | |||
25 | public function ulid(string $fieldName, bool $nullable = false): ?Ulid |
||
28 | } |
||
29 | |||
30 | public function dateTime(string $fieldName, bool $nullable = false): ?\DateTime |
||
31 | { |
||
32 | return parent::dateTime($fieldName, $nullable); // TODO: Change the autogenerated stub |
||
33 | } |
||
34 | |||
35 | public static function getName(): string |
||
38 | } |
||
39 | } |