AbstractEntityEvent.php in Hook Event Dispatcher 8.2
Same filename and directory in other branches
File
modules/core_event_dispatcher/src/Event/Entity/AbstractEntityEvent.phpView source
<?php
namespace Drupal\core_event_dispatcher\Event\Entity;
use Drupal\Core\Entity\EntityInterface;
use Drupal\hook_event_dispatcher\Event\EventInterface;
use Symfony\Component\EventDispatcher\Event;
/**
* Class AbstractEntityEvent.
*/
abstract class AbstractEntityEvent extends Event implements EventInterface {
/**
* The Entity.
*
* @var \Drupal\Core\Entity\EntityInterface
*/
protected $entity;
/**
* AbstractEntityEvent constructor.
*
* @param \Drupal\Core\Entity\EntityInterface $entity
* The Entity.
*/
public function __construct(EntityInterface $entity) {
$this->entity = $entity;
}
/**
* Get the Entity.
*
* @return \Drupal\Core\Entity\EntityInterface
* The Entity.
*/
public function getEntity() : EntityInterface {
return $this->entity;
}
}
Classes
Name | Description |
---|---|
AbstractEntityEvent | Class AbstractEntityEvent. |