public function Event::getName

Gets the event's name.

@api

Return value

string

1 call to Event::getName()
GenericEvent::getArgument in drupal/core/vendor/symfony/event-dispatcher/Symfony/Component/EventDispatcher/GenericEvent.php
Get argument by key.

File

drupal/core/vendor/symfony/event-dispatcher/Symfony/Component/EventDispatcher/Event.php, line 105

Class

Event
Event is the base class for classes containing event data.

Namespace

Symfony\Component\EventDispatcher

Code

public function getName() {
  return $this->name;
}