| Total Complexity | 2 |
| Total Lines | 15 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 2 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 7 | class RelatedAgent |
||
| 8 | { |
||
| 9 | private RelatedAgentTypeInterface $relatedAgentDetails; |
||
| 10 | |||
| 11 | /** |
||
| 12 | * RelatedAgent constructor. |
||
| 13 | */ |
||
| 14 | public function __construct(RelatedAgentTypeInterface $relatedAgentDetails) |
||
| 15 | { |
||
| 16 | $this->relatedAgentDetails = $relatedAgentDetails; |
||
| 17 | 17 | } |
|
| 18 | |||
| 19 | 17 | public function getRelatedAgentType(): RelatedAgentTypeInterface |
|
| 22 | 1 | } |
|
| 23 | } |
||
| 24 |