| 1 | <?php |
||
| 10 | class IndexObjectDifference |
||
| 11 | { |
||
| 12 | /** |
||
| 13 | * @var string |
||
| 14 | */ |
||
| 15 | protected $relativePath; |
||
| 16 | |||
| 17 | /** |
||
| 18 | * @var IndexObject |
||
| 19 | */ |
||
| 20 | protected $indexObjectA; |
||
| 21 | |||
| 22 | /** |
||
| 23 | * @var IndexObject |
||
| 24 | */ |
||
| 25 | protected $indexObjectB; |
||
| 26 | |||
| 27 | public function __construct(?IndexObject $indexObjectA, ?IndexObject $indexObjectB) |
||
| 51 | |||
| 52 | public function getRelativePath(): string |
||
| 56 | |||
| 57 | public function getIndexObjectA(): ?IndexObject |
||
| 61 | |||
| 62 | public function getIndexObjectB(): ?IndexObject |
||
| 66 | } |
||
| 67 |