Module constructor no longed needs Connection object
This commit is contained in:
parent
281b30fb1f
commit
eedfb40e76
@ -43,7 +43,10 @@ class Doctrine_Connection_Module {
|
|||||||
* @param Doctrine_Connection $conn Doctrine_Connection object, every connection
|
* @param Doctrine_Connection $conn Doctrine_Connection object, every connection
|
||||||
* module holds an instance of Doctrine_Connection
|
* module holds an instance of Doctrine_Connection
|
||||||
*/
|
*/
|
||||||
public function __construct(Doctrine_Connection $conn) {
|
public function __construct($conn = null) {
|
||||||
|
if( ! ($conn instanceof Doctrine_Connection))
|
||||||
|
$conn = Doctrine_Manager::getInstance()->getCurrentConnection();
|
||||||
|
|
||||||
$this->conn = $conn;
|
$this->conn = $conn;
|
||||||
|
|
||||||
$e = explode('_', get_class($this));
|
$e = explode('_', get_class($this));
|
||||||
|
Loading…
Reference in New Issue
Block a user