internal = $internal; } public function getInternal() { return $this->internal . ' from getter'; } /** * @Assert\NotNull */ public function getLastName() { return $this->lastName; } public function setGroups($groups) { $this->groups = $groups; } public function getValidationGroups() { return $this->groups; } }