Skip to content

Latest commit

 

History

History
160 lines (101 loc) · 4.05 KB

OnLoadSourceLocatorsCollection.md

File metadata and controls

160 lines (101 loc) · 4.05 KB

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


namespace BumbleDocGen\Core\Plugin\Event\Parser;

final class OnLoadSourceLocatorsCollection extends \Symfony\Contracts\EventDispatcher\Event
Called when source locators are loaded

Initialization methods:

  1. __construct

Methods:

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

Method details:

public function __construct(\BumbleDocGen\Core\Parser\SourceLocator\SourceLocatorsCollection $sourceLocatorsCollection);

Parameters:

Name Type Description
$sourceLocatorsCollection \BumbleDocGen\Core\Parser\SourceLocator\SourceLocatorsCollection -

public function getSourceLocatorsCollection(): \BumbleDocGen\Core\Parser\SourceLocator\SourceLocatorsCollection;

Parameters: not specified

Return value: \BumbleDocGen\Core\Parser\SourceLocator\SourceLocatorsCollection


// 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