Skip to content

Commit

Permalink
marked as internal
Browse files Browse the repository at this point in the history
  • Loading branch information
gam6itko committed Jul 4, 2021
1 parent 32bce09 commit 5ad6ffb
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/EventDispatcher/EventDispatcher.php
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,9 @@ public function setListeners(array $listeners): void
$this->classListeners = [];
}

/**
* @internal Used for profiling
*/
public function getListeners(): array
{
return $this->listeners;
Expand Down
3 changes: 3 additions & 0 deletions src/Handler/HandlerRegistry.php
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,9 @@ public function getHandler(int $direction, string $typeName, string $format)
return $this->handlers[$direction][$typeName][$format];
}

/**
* @internal Used for profiling
*/
public function getHandlers(): array
{
return $this->handlers;
Expand Down

0 comments on commit 5ad6ffb

Please sign in to comment.