1 | <?php |
||
19 | final class AgentProfileDocument extends Document |
||
20 | { |
||
21 | /** |
||
22 | * @var AgentProfile The agent profile |
||
23 | */ |
||
24 | private $profile; |
||
25 | |||
26 | public function __construct(AgentProfile $profile, DocumentData $data) |
||
32 | |||
33 | /** |
||
34 | * Returns the agent profile. |
||
35 | * |
||
36 | * @return AgentProfile The agent profile |
||
37 | */ |
||
38 | public function getAgentProfile() |
||
42 | } |
||
43 |