test
All checks were successful
/ ls (push) Successful in 19s

This commit is contained in:
lubiana 2023-10-16 21:59:20 +02:00
parent ff7e416c57
commit 9228c09d60
No known key found for this signature in database
2 changed files with 12 additions and 4 deletions

View file

@ -40,8 +40,7 @@ final class Finder
/**
* @return Listener[]
*/
public function getListeners(): array
{
public function getListeners(): array {
$this->populateClassnames();
return array_map(
static fn (array $h): Listener
@ -53,8 +52,7 @@ final class Finder
/**
* @return Handler[]
*/
public function getHandlers(): array
{
public function getHandlers(): array {
$this->populateClassnames();
return array_map(
static fn (array $h): Handler