| 1 | <?php |
||
| 11 | class RecordDiffEntry |
||
| 12 | { |
||
| 13 | /** @var string */ |
||
| 14 | private $key; |
||
| 15 | /** @var string */ |
||
| 16 | private $before; |
||
| 17 | /** @var string */ |
||
| 18 | private $after; |
||
| 19 | |||
| 20 | /** |
||
| 21 | * @param string $key |
||
| 22 | * @param string $before |
||
| 23 | * @param string $after |
||
| 24 | */ |
||
| 25 | 3 | public function __construct($key, $before, $after) |
|
| 31 | |||
| 32 | /** |
||
| 33 | * @return string |
||
| 34 | */ |
||
| 35 | 3 | public function getKey() |
|
| 39 | |||
| 40 | /** |
||
| 41 | * @return string |
||
| 42 | */ |
||
| 43 | 3 | public function getBefore() |
|
| 47 | |||
| 48 | /** |
||
| 49 | * @return string |
||
| 50 | */ |
||
| 51 | 3 | public function getAfter() |
|
| 55 | } |
||
| 56 |