1 <?php
2 /**
3 * @author Krzysztof Gzocha <krzysztof.gzocha@xsolve.pl>
4 */
5 namespace Team3\PayU\PropertyExtractor\Reader;
6
7 /**
8 * This class is holding property name and method on which it was collected.
9 *
10 * Interface ReaderResultInterface
11 * @package Team3\PayU\PropertyExtractor\Reader
12 */
13 interface ReaderResultInterface
14 {
15 /**
16 * @return string
17 */
18 public function getMethodName();
19
20 /**
21 * @return string
22 */
23 public function getPropertyName();
24 }
25