Skip to content

Latest commit

 

History

History
92 lines (51 loc) · 2.21 KB

AfterRenderingEntities.md

File metadata and controls

92 lines (51 loc) · 2.21 KB

BumbleDocGen / Technical description of the project / Class map / AfterRenderingEntities


namespace BumbleDocGen\Core\Plugin\Event\Renderer;

final class AfterRenderingEntities extends \Symfony\Contracts\EventDispatcher\Event
Event is the base class for classes containing event data.

Methods:

  1. isPropagationStopped - Is propagation stopped?
  2. stopPropagation - Stops the propagation of the event to further event listeners.

Method details:

// Implemented in Symfony\Contracts\EventDispatcher\Event

public function isPropagationStopped(): bool;
Is propagation stopped?

Parameters: not specified

Return value: bool


// Implemented in Symfony\Contracts\EventDispatcher\Event

public function stopPropagation(): void;
Stops the propagation of the event to further event listeners.

Parameters: not specified

Return value: void