We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
Total Complexity | 3 |
Total Lines | 18 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php declare(strict_types=1); |
||
8 | class StoredDestination { |
||
9 | |||
10 | public function __construct( |
||
11 | public readonly string $label, |
||
12 | public readonly int $sectorID, |
||
13 | public readonly int $offsetTop, |
||
14 | public readonly int $offsetLeft, |
||
15 | ) {} |
||
16 | |||
17 | /** |
||
18 | * Returns the name to display for this destination, e.g. "#42 - UG". |
||
19 | */ |
||
20 | public function getDisplayName(): string { |
||
26 | } |
||
27 | |||
29 |