1
0
mirror of https://github.com/flarum/core.git synced 2025-07-24 02:01:19 +02:00

fire -> dispatch

As per Illuminate\Contracts\Events\Dispatcher
This commit is contained in:
Toby Zerner
2018-02-10 12:09:35 +10:30
parent c3d034d2fa
commit b8e5dcd587
31 changed files with 42 additions and 42 deletions

View File

@@ -36,10 +36,10 @@ abstract class AbstractFrontendController extends AbstractHtmlController
{
$view = $this->getView($request);
$this->events->fire(
$this->events->dispatch(
new ConfigureClientView($this, $view, $request)
);
$this->events->fire(
$this->events->dispatch(
new Rendering($this, $view, $request)
);