Drug::tableName PHP Method

tableName() public method

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

Usage Example

Beispiel #1
0
 /**
  *	@covers	DrugForm::tableName
  *	@todo Implement testTableName().
  */
 public function testTableName()
 {
     $this->assertEquals('drug', $this->model->tableName());
 }