ContactLabel::tableName PHP Method

tableName() public method

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

Usage Example

 /**
  * @covers ContactLabel::tableName
  */
 public function testTableName()
 {
     $this->assertEquals('contact_label', $this->model->tableName());
 }