/**
  * {@inheritDoc}
  */
 public function createService(ServiceLocatorInterface $serviceLocator)
 {
     $options = $serviceLocator->get('zfcuser_module_options');
     $entityClass = $options->getUserEntityClass();
     $object = new ZfcUserFieldset(new ZfcUserForm($options));
     $object->setHydrator($serviceLocator->get('zfcuser_user_hydrator'));
     $object->setObject(new $entityClass());
     return $object;
 }