Skip to content

Latest commit

 

History

History
92 lines (51 loc) · 2.24 KB

File metadata and controls

92 lines (51 loc) · 2.24 KB

BumbleDocGen / Technical description of the project / Plugin system / BeforeRenderingDocFiles


namespace BumbleDocGen\Core\Plugin\Event\Renderer;

final class BeforeRenderingDocFiles extends \Symfony\Contracts\EventDispatcher\Event
The event occurs before the main documents begin rendering

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