You are here

RngEntityModelInterface.php in RNG - Events and Registrations 8.2

Same filename and directory in other branches
  1. 8 src/RngEntityModelInterface.php
  2. 3.x src/RngEntityModelInterface.php

Namespace

Drupal\rng

File

src/RngEntityModelInterface.php
View source
<?php

namespace Drupal\rng;


/**
 * Provides an interface for RNG entity model service.
 */
interface RngEntityModelInterface {

  /**
   * Get entity operation records for relevant RNG entities during this request.
   *
   * @return \Drupal\rng\RngOperationRecord[]
   *   An array of operation records.
   */
  public function getOperationRecords();

}

Interfaces

Namesort descending Description
RngEntityModelInterface Provides an interface for RNG entity model service.