| 1 | <?php |
||
| 5 | class RelatedAgent |
||
| 6 | { |
||
| 7 | /** |
||
| 8 | * @var RelatedAgentTypeInterface |
||
| 9 | */ |
||
| 10 | private $relatedAgentDetails; |
||
| 11 | |||
| 12 | /** |
||
| 13 | * RelatedAgent constructor. |
||
| 14 | * @param RelatedAgentTypeInterface $relatedAgentDetails |
||
| 15 | */ |
||
| 16 | 13 | public function __construct(RelatedAgentTypeInterface $relatedAgentDetails) |
|
| 20 | |||
| 21 | /** |
||
| 22 | * @return RelatedAgentTypeInterface |
||
| 23 | */ |
||
| 24 | 1 | public function getRelatedAgentType() |
|
| 28 | } |