You are here

TableFactoryInterface.php in Data 8

Namespace

Drupal\data

File

src/TableFactoryInterface.php
View source
<?php

namespace Drupal\data;


/**
 * Provides an interface for data handling.
 */
interface TableFactoryInterface {

  /**
   * @param string $name
   *
   * @return Table
   * @throws DataException
   */
  function get($name);

}

Interfaces

Namesort descending Description
TableFactoryInterface Provides an interface for data handling.