コード例 #1
0
ファイル: CakeAdapter.php プロジェクト: lhas/pep
 /**
  * Initializes the database connection.
  *
  * @throws \RuntimeException When the requested database driver is not installed.
  * @return void
  */
 public function connect()
 {
     $this->adapter->connect();
 }
コード例 #2
0
 /**
  * Initializes the database connection.
  *
  * @throws \RuntimeException When the requested database driver is not installed.
  * @return TableMigrationInterface
  */
 public function connect()
 {
     $this->adapter->connect();
     return $this;
 }