1
0
mirror of synced 2024-12-13 14:56:01 +03:00

Module constructor no longed needs Connection object

This commit is contained in:
zYne 2006-11-19 14:35:19 +00:00
parent 281b30fb1f
commit eedfb40e76

View File

@ -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));