Exemple #1
0
 /**
  * @param Column $column
  * @return string
  */
 protected function _renderColumnName(Column $column)
 {
     $name = $column->getName();
     if ($name === Column::ALL) {
         return $this->_renderColumnAll();
     }
     return $name;
 }
 public function testSetName()
 {
     $col = new Column("id", "project");
     $col->setName("project_id");
     $this->assertEquals("project_id", $col->getName());
 }