DrugDuration::tableName PHP Method

tableName() public method

public tableName ( ) : string
return string the associated database table name
    public function tableName()
    {
        return 'drug_duration';
    }

Usage Example

Exemplo n.º 1
0
 /**
  * @covers DrugDuration::tableName
  */
 public function testTableName()
 {
     $this->assertEquals('drug_duration', $this->model->tableName());
 }