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(): クラスが存在せず、40 行目の /.../doctrine/common/lib/Doctrine/Common/Persistence/Mapping/RuntimeReflectionService.php にロードできませんでした
public function getParentClasses($class)
{
return class_parents($class); //Line 40
}