You are here

public function RngOperationRecord::getOperation in RNG - Events and Registrations 8.2

Same name and namespace in other branches
  1. 8 src/RngOperationRecord.php \Drupal\rng\RngOperationRecord::getOperation()
  2. 3.x src/RngOperationRecord.php \Drupal\rng\RngOperationRecord::getOperation()

Gets the operation executed on this entity.

Return value

string|null The operation executed on this entity, or NULL if not set.

File

src/RngOperationRecord.php, line 37

Class

RngOperationRecord
Stores operations executed on an entity during a request.

Namespace

Drupal\rng

Code

public function getOperation() {
  return $this->operation;
}