Skip to content
This repository has been archived by the owner on Feb 10, 2023. It is now read-only.

Commit

Permalink
Fix events not being triggered correctly
Browse files Browse the repository at this point in the history
  • Loading branch information
stevewest committed May 13, 2016
1 parent c989b6d commit 64dbd8b
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/Application.php
Expand Up @@ -109,7 +109,10 @@ public function run()
// send shutdown event
$this->dependencyContainer
->get('fuel.application.event')
->emit(new ResponseFinished($this))
->emit(new ResponseFinished($this));

$this->dependencyContainer
->get('fuel.application.event')
->emit(new AppShutdown($this));
}

Expand Down

0 comments on commit 64dbd8b

Please sign in to comment.