TableFactoryInterface.php in Data 8
Namespace
Drupal\dataFile
src/TableFactoryInterface.phpView source
<?php
namespace Drupal\data;
/**
* Provides an interface for data handling.
*/
interface TableFactoryInterface {
/**
* @param string $name
*
* @return Table
* @throws DataException
*/
function get($name);
}
Interfaces
Name | Description |
---|---|
TableFactoryInterface | Provides an interface for data handling. |