You are here

interface LogQueryFactoryInterface in farmOS 2.x

The interface for a log query factory.

Hierarchy

Expanded class hierarchy of LogQueryFactoryInterface

All classes that implement LogQueryFactoryInterface

File

modules/core/log/src/LogQueryFactoryInterface.php, line 10

Namespace

Drupal\farm_log
View source
interface LogQueryFactoryInterface {

  /**
   * Get a new log query object.
   *
   * @param array $options
   *   An array of options for building the query.
   *
   * @return \Drupal\Core\Entity\Query\QueryInterface
   *   A query object.
   */
  public function getQuery(array $options = []) : QueryInterface;

}

Members

Namesort descending Modifiers Type Description Overrides
LogQueryFactoryInterface::getQuery public function Get a new log query object.