BumbleDocGen / Technical description of the project / Class map / OnCreateDocumentedEntityWrapper
namespace BumbleDocGen\Core\Plugin\Event\Renderer;
final class OnCreateDocumentedEntityWrapper extends \Symfony\Contracts\EventDispatcher\Event
The event occurs when an entity is added to the list for documentation
- getDocumentedEntityWrapper
- isPropagationStopped - Is propagation stopped?
- stopPropagation - Stops the propagation of the event to further event listeners.
- # __construct | source code
public function __construct(\BumbleDocGen\Core\Renderer\Context\DocumentedEntityWrapper $documentedEntityWrapper);
Parameters:
Name | Type | Description |
---|---|---|
$documentedEntityWrapper | \BumbleDocGen\Core\Renderer\Context\DocumentedEntityWrapper | - |
- # getDocumentedEntityWrapper | source code
public function getDocumentedEntityWrapper(): \BumbleDocGen\Core\Renderer\Context\DocumentedEntityWrapper;
Parameters: not specified
Return value: \BumbleDocGen\Core\Renderer\Context\DocumentedEntityWrapper
- # isPropagationStopped | source code
// Implemented in Symfony\Contracts\EventDispatcher\Event
public function isPropagationStopped(): bool;
Is propagation stopped?
Parameters: not specified
Return value: bool
- # stopPropagation | source code
// 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