Skip to content

Commit

Permalink
Merge branch '6.4' into 7.0
Browse files Browse the repository at this point in the history
* 6.4:
  [Mime] Fix lowest versions of deps
  [VarDumper] Fix calling scope detection inside magic accessors
  [Validator] add missing German translations
  fix deprecation versions
  update the Brevo SMTP host
  Remove \ReflectionProperty::setAccessible(true) calls
  [Serializer] Fix denormalizing abstract part headers in MimeMessageNormalizer
  Fix property must not be accessed before initialization on SymfonyRuntime::$input
  [Form] Remove an obsolete phpdoc comment
  [Webhook] Allow slash in webhook type
  Use more "First class callable syntax" + Normalize set_error_handler/set_exception_handler calls
  [FrameworkBundle][Workflow] Throw exception is workflow.xxx.transitions is not an array
  • Loading branch information
nicolas-grekas committed Jul 27, 2023
2 parents bb7f887 + 5fc47d6 commit c4d80a3
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion Debug/TraceableEventDispatcher.php
Original file line number Diff line number Diff line change
Expand Up @@ -329,7 +329,6 @@ private function getListenersWithPriority(): array
$result = [];

$allListeners = new \ReflectionProperty(EventDispatcher::class, 'listeners');
$allListeners->setAccessible(true);

foreach ($allListeners->getValue($this->dispatcher) as $eventName => $listenersByPriority) {
foreach ($listenersByPriority as $priority => $listeners) {
Expand Down

0 comments on commit c4d80a3

Please sign in to comment.