Creating own Zend_Auth_Adapter
问题 i am having difficulties creating my own Zend_Auth_Adapter. i am using Doctrine 2 with it also. so far i have ... code below i am getting the error Method "hasIdentity" does not exist and was not trapped in __call() whats wrong? use \Doctrine\ORM; class Application_Auth_Adapter implements Zend_Auth_Adapter_Interface { private $username; private $password; function __construct($username, $password) { $this->username = $username; $this->password = $password; } function authenticate() { $em =