public function createOccupation($name) { $occ = new Occupation(); $occ->setName($name); $occ->save(); return $occ; }