for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Genkgo\Camt\DTO;
class RelatedAgent
{
private RelatedAgentTypeInterface $relatedAgentDetails;
/**
* RelatedAgent constructor.
*/
public function __construct(RelatedAgentTypeInterface $relatedAgentDetails)
$this->relatedAgentDetails = $relatedAgentDetails;
}
public function getRelatedAgentType(): RelatedAgentTypeInterface
return $this->relatedAgentDetails;