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