Skip to content

Commit 436a5c7

Browse files
committed
Update for Laravel 5
1 parent 73a9c43 commit 436a5c7

File tree

3 files changed

+17
-6
lines changed

3 files changed

+17
-6
lines changed

composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"rollbar/rollbar": "0.9.*"
1616
},
1717
"require-dev": {
18-
"orchestra/testbench": "2.2.*",
18+
"orchestra/testbench": "3.0.*",
1919
"mockery/mockery": "*",
2020
"satooshi/php-coveralls": "*"
2121
},

src/RollbarServiceProvider.php

+15-4
Original file line numberDiff line numberDiff line change
@@ -28,11 +28,22 @@ public function boot()
2828
$app['rollbar.handler']->log($level, $message, $context);
2929
});
3030

31-
// Register Laravel shutdown function
32-
$this->app->shutdown(function() use ($app)
31+
if (method_exists($app, 'version') and starts_with($app->version(), '5'))
3332
{
34-
$app['rollbar.client']->flush();
35-
});
33+
// Register Laravel 5 shutdown function
34+
$this->app->terminating(function() use ($app)
35+
{
36+
$app['rollbar.client']->flush();
37+
});
38+
}
39+
else
40+
{
41+
// Register Laravel 4 shutdown function
42+
$this->app->shutdown(function() use ($app)
43+
{
44+
$app['rollbar.client']->flush();
45+
});
46+
}
3647

3748
// Register PHP shutdown function
3849
register_shutdown_function(function() use ($app)

tests/RollbarTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ public function tearDown()
1515
Mockery::close();
1616
}
1717

18-
protected function getPackageProviders()
18+
protected function getPackageProviders($app)
1919
{
2020
return ['Jenssegers\Rollbar\RollbarServiceProvider'];
2121
}

0 commit comments

Comments
 (0)