| Total Complexity | 2 |
| Total Lines | 25 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 7 | final class Link |
||
| 8 | { |
||
| 9 | /** @var string */ |
||
| 10 | public $from; |
||
| 11 | |||
| 12 | /** @var string */ |
||
| 13 | public $to; |
||
| 14 | |||
| 15 | /** @var string */ |
||
| 16 | public $label; |
||
| 17 | |||
| 18 | /** @var TransDescriptor */ |
||
| 19 | public $transDescriptor; |
||
| 20 | |||
| 21 | public function __construct(SemanticDescriptor $semantic, TransDescriptor $trans, LabelNameInterface $labelName) |
||
| 27 | } |
||
| 28 | |||
| 29 | public function __toString(): string |
||
| 34 |