/** * {@inheritdoc} */ public function setName($name) { parent::setName(trim($this->lastName . ' ' . $this->firstName)); return $this; }
/** * Constructor */ public function __construct() { parent::__construct(); $this->contacts = new ArrayCollection(); }