コード例 #1
0
ファイル: Service.php プロジェクト: MossesX/mongo-cms
 /**
  * Constructor
  *
  * @param string|DSN $dsn
  */
 public function __construct($dsn)
 {
     $dsn = new DSN($dsn);
     $this->_adapter = Factory::createAdapter($dsn->getType());
     $this->_connection = $this->_adapter->connect($dsn);
 }