Skip to content

Commit e0a3139

Browse files
committed
Use shutdown callback instead of after
1 parent 191f575 commit e0a3139

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/RollbarServiceProvider.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ protected function registerListeners()
8383
});
8484

8585
// Register after filter
86-
$this->app->after(function()
86+
$this->app->shutdown(function()
8787
{
8888
$rollbar = App::make('rollbar');
8989
$rollbar->flush();

tests/RollbarTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ public function testFlush()
9393
$this->app->instance('rollbar', $mock);
9494

9595
Route::enableFilters();
96-
Event::fire('router.after');
96+
$this->app->shutdown();
9797
}
9898

9999
public function testQueueGetsPushed()

0 commit comments

Comments
 (0)