OpenSkill\Datatable\Versions\Datatable19Version::tableView PHP Method

tableView() public method

public tableView ( ) : string
return string The name of the view that this version should use fot the table.
    public function tableView()
    {
        return "datatable::table";
    }

Usage Example

 public function testViewString()
 {
     $this->assertNotNull($this->version->tableView());
     $this->assertNotNull($this->version->scriptView());
 }