call_user_func

This commit is contained in:
Khoubza Younes
2021-10-03 22:08:13 +01:00
parent f99e63f9bc
commit 0f151f7b37
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -113,7 +113,7 @@ jobs:
ini-values: memory_limit=-1
coverage: none
- name: Install dependencies
- name: Install dependenciesEventDispatcher
run: |
composer require "laravel/framework:${{ matrix.laravel }}" "phpunit/phpunit:${{ matrix.phpunit }}" "orchestra/testbench:${{ matrix.testbench }}" monolog/monolog --no-interaction --no-update
composer update --prefer-dist --no-interaction --no-suggest
@@ -98,7 +98,7 @@ final class EventDispatcher implements EventDispatcherInterface
if ($event instanceof StoppableEventInterface && $event->isPropagationStopped()) {
break;
}
$listener($event, $this);
call_user_func($listener, $event, $this);
}
}
}