1 <?php
2 3 4
5 namespace Team3\PayU\PropertyExtractor\Reader;
6
7 8 9 10 11 12
13 class ReaderResult implements ReaderResultInterface
14 {
15 16 17
18 private $methodName;
19
20 21 22
23 private $propertyName;
24
25 26 27 28
29 public function __construct(
30 $methodName,
31 $propertyName
32 ) {
33 $this->methodName = $methodName;
34 $this->propertyName = $propertyName;
35 }
36
37 38 39
40 public function getMethodName()
41 {
42 return $this->methodName;
43 }
44
45 46 47
48 public function getPropertyName()
49 {
50 return $this->propertyName;
51 }
52 }
53