EntityBaseFieldInfoAlterEvent.php in Hook Event Dispatcher 8.2
File
modules/core_event_dispatcher/src/Event/Entity/EntityBaseFieldInfoAlterEvent.php
View source
<?php
namespace Drupal\core_event_dispatcher\Event\Entity;
use Drupal\Core\Entity\EntityTypeInterface;
use Drupal\hook_event_dispatcher\Event\EventInterface;
use Drupal\hook_event_dispatcher\HookEventDispatcherInterface;
use Symfony\Component\EventDispatcher\Event;
class EntityBaseFieldInfoAlterEvent extends Event implements EventInterface {
private $fields;
private $entityType;
public function __construct(array &$fields, EntityTypeInterface $entityType) {
$this->entityType = $entityType;
$this->fields =& $fields;
}
public function getDispatcherType() : string {
return HookEventDispatcherInterface::ENTITY_BASE_FIELD_INFO_ALTER;
}
public function &getFields() : array {
return $this->fields;
}
public function getEntityType() : EntityTypeInterface {
return $this->entityType;
}
}