| 1 | <?php |
||
| 16 | class MapMatcher implements PropertyMatcherInterface |
||
| 17 | { |
||
| 18 | /** |
||
| 19 | * @var array |
||
| 20 | */ |
||
| 21 | protected $map; |
||
| 22 | |||
| 23 | /** |
||
| 24 | * MapMatcher constructor. |
||
| 25 | * |
||
| 26 | * @param array $map |
||
| 27 | */ |
||
| 28 | public function __construct(array $map) |
||
| 32 | |||
| 33 | /** |
||
| 34 | * {@inheritdoc} |
||
| 35 | */ |
||
| 36 | public function match(\ReflectionProperty $property, $givenName) |
||
| 44 | } |
||
| 45 |