예제 #1
0
파일: CakeAdapter.php 프로젝트: lhas/pep
 /**
  * Creates the specified database table.
  *
  * @param Table $table Table
  * @return void
  */
 public function createTable(Table $table)
 {
     $this->adapter->createTable($table);
 }
 /**
  * Creates the specified database table.
  *
  * @param TableMigrationInterface $table TableMigrationInterface
  *
  * @return TableMigrationInterface
  */
 public function createTable(TableMigrationInterface $table)
 {
     $this->adapter->createTable($table);
     return $this;
 }