コード例 #1
0
 public function testConstruct()
 {
     $table = new Table("project");
     $this->assertEquals("project", $table->getName());
 }
コード例 #2
0
ファイル: Generic.php プロジェクト: willoucom/php-sql-query
 /**
  * @param Table $table
  * @return string
  */
 protected function _renderTableName(Table $table)
 {
     return $table->getName();
 }