Skip to content

Latest commit

 

History

History
227 lines (145 loc) · 5.57 KB

OnCheckIsClassEntityCanBeLoad.md

File metadata and controls

227 lines (145 loc) · 5.57 KB

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


namespace BumbleDocGen\LanguageHandler\Php\Plugin\Event\Entity;

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

Initialization methods:

  1. __construct

Methods:

  1. disableClassLoading
  2. getEntity
  3. isClassCanBeLoad
  4. isPropagationStopped - Is propagation stopped?
  5. stopPropagation - Stops the propagation of the event to further event listeners.

Properties:

  1. classCanBeLoad

Property details:

public bool $classCanBeLoad;

Method details:

public function __construct(\BumbleDocGen\LanguageHandler\Php\Parser\Entity\ClassEntity $entity);

Parameters:

Name Type Description
$entity \BumbleDocGen\LanguageHandler\Php\Parser\Entity\ClassEntity -

public function disableClassLoading(): void;

Parameters: not specified

Return value: void


public function getEntity(): \BumbleDocGen\LanguageHandler\Php\Parser\Entity\ClassEntity;

Parameters: not specified

Return value: \BumbleDocGen\LanguageHandler\Php\Parser\Entity\ClassEntity


public function isClassCanBeLoad(): bool;

Parameters: not specified

Return value: bool


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