Module constructor no longed needs Connection object
This commit is contained in:
parent
281b30fb1f
commit
eedfb40e76
1 changed files with 4 additions and 1 deletions
|
@ -43,7 +43,10 @@ class Doctrine_Connection_Module {
|
|||
* @param Doctrine_Connection $conn Doctrine_Connection object, every 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;
|
||||
|
||||
$e = explode('_', get_class($this));
|
||||
|
|
Loading…
Add table
Reference in a new issue