| 1 | <?php |
||
| 7 | class IndexObjectComparison |
||
| 8 | { |
||
| 9 | /** |
||
| 10 | * @var string |
||
| 11 | */ |
||
| 12 | protected $relativePath; |
||
| 13 | |||
| 14 | /** |
||
| 15 | * @var IndexObject |
||
| 16 | */ |
||
| 17 | protected $indexObjectA; |
||
| 18 | |||
| 19 | /** |
||
| 20 | * @var IndexObject |
||
| 21 | */ |
||
| 22 | protected $indexObjectB; |
||
| 23 | |||
| 24 | public function __construct(?IndexObject $indexObjectA, ?IndexObject $indexObjectB) |
||
| 48 | |||
| 49 | public function getRelativePath(): string |
||
| 53 | |||
| 54 | public function getIndexObjectA(): ?IndexObject |
||
| 58 | |||
| 59 | public function getIndexObjectB(): ?IndexObject |
||
| 63 | } |
||
| 64 |