for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Genkgo\Camt\DTO;
class CreditorAgent implements RelatedAgentTypeInterface
{
/**
* @var string
*/
private $name;
private $BIC;
* CreditorAgent constructor.
* @param string $name
* @param string $BIC
public function __construct($name, $BIC)
$this->name = $name;
$this->BIC = $BIC;
}
* @return string
public function getName()
return $this->name;
public function setName($name)
public function getBIC()
return $this->BIC;
public function setBIC($BIC)