1<?php
2
3namespace DeepCopy\Matcher;
4
5interface Matcher
6{
7    /**
8     * @param object $object
9     * @param string $property
10     *
11     * @return boolean
12     */
13    public function matches($object, $property);
14}
15