1 | <?php |
||
9 | final class FieldSchema |
||
10 | { |
||
11 | /** @var string */ |
||
12 | private $name; |
||
13 | |||
14 | /** @var string */ |
||
15 | private $type; |
||
16 | |||
17 | /** |
||
18 | * @param string $name |
||
19 | * @param string $type |
||
20 | */ |
||
21 | public function __construct(string $name, string $type) |
||
26 | |||
27 | /** |
||
28 | * @return string |
||
29 | */ |
||
30 | public function getName(): string |
||
34 | |||
35 | /** |
||
36 | * @return string |
||
37 | */ |
||
38 | public function getType(): string |
||
42 | } |
||
43 |