| 1 | <?php |
||
| 6 | class PropRule |
||
| 7 | { |
||
| 8 | /** @var array */ |
||
| 9 | protected $map; |
||
| 10 | |||
| 11 | /** |
||
| 12 | * @param array $map |
||
| 13 | */ |
||
| 14 | 6 | public function __construct(array $map) |
|
| 18 | |||
| 19 | 6 | public function getKey(string $name, $default = null) |
|
| 23 | |||
| 24 | 6 | public function getProp(string $default = null): ?string |
|
| 28 | |||
| 29 | 2 | public function getSet() |
|
| 33 | |||
| 34 | 4 | public function getGetter() |
|
| 38 | |||
| 39 | 6 | public function getType(): ?string |
|
| 43 | } |
||
| 44 |