Zend Framework 2 + Doctrine:尝试进行身份验证

时间:2012-10-10 13:11:01

标签: authentication doctrine zend-framework2

我正在尝试在Zend Framework 2 + Doctrine中进行身份验证:

我想我添加了Module.php + module.config.php

所需的一切

在我的控制器中,我做了:

$authService = $this->getServiceLocator()->get('Zend\Authentication\AuthenticationService');
$adapter = $authService->getAdapter();
$adapter->setIdentityValue($formdata['username']);
$adapter->setCredentialValue($formdata['password']);
$authResult = $adapter->authenticate();

直到$ adapter-> authenticate();

为止

错误是:

  

警告:class_parents():类不存在且无法加载   在   /.../doctrine/common/lib/Doctrine/Common/Persistence/Mapping/RuntimeReflectionService.php   在第40行

public function getParentClasses($class)
{
      return class_parents($class); //Line 40
}

0 个答案:

没有答案