Skip to content

Latest commit

 

History

History
92 lines (51 loc) · 2.26 KB

BeforeRenderingEntities.md

File metadata and controls

92 lines (51 loc) · 2.26 KB

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


namespace BumbleDocGen\Core\Plugin\Event\Renderer;

final class BeforeRenderingEntities extends \Symfony\Contracts\EventDispatcher\Event
The event occurs before the rendering of entity documents begins, after the main documents have been created

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