This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
vendor/ | |
composer.lock |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
class My_Auth_Adapter_Doctrine2 implements Zend_Auth_Adapter_Interface | |
{ | |
/** | |
* Doctrine Entity Manager | |
* | |
* @var \Doctrine\ORM\EntityManager | |
*/ | |
protected $_em = null; |
NewerOlder