File tree 2 files changed +34
-12
lines changed
2 files changed +34
-12
lines changed Original file line number Diff line number Diff line change @@ -28,28 +28,28 @@ public function boot()
28
28
$ app ['rollbar.handler ' ]->log ($ level , $ message , $ context );
29
29
});
30
30
31
- if (method_exists ($ app , 'version ' ) and starts_with ($ app ->version (), '5 ' ))
31
+ // Flush callback
32
+ $ flush = function () use ($ app )
32
33
{
33
- // Register Laravel 5 shutdown function
34
- $ this ->app ->terminating (function () use ($ app )
34
+ if ($ app ->resolved ('rollbar.client ' ))
35
35
{
36
36
$ app ['rollbar.client ' ]->flush ();
37
- });
37
+ }
38
+ };
39
+
40
+ if (method_exists ($ app , 'version ' ) and starts_with ($ app ->version (), '5 ' ))
41
+ {
42
+ // Register Laravel 5 shutdown function
43
+ $ this ->app ->terminating ($ flush );
38
44
}
39
45
else
40
46
{
41
47
// Register Laravel 4 shutdown function
42
- $ this ->app ->shutdown (function () use ($ app )
43
- {
44
- $ app ['rollbar.client ' ]->flush ();
45
- });
48
+ $ this ->app ->shutdown ($ flush );
46
49
}
47
50
48
51
// Register PHP shutdown function
49
- register_shutdown_function (function () use ($ app )
50
- {
51
- $ app ['rollbar.client ' ]->flush ();
52
- });
52
+ register_shutdown_function ($ flush );
53
53
}
54
54
55
55
/**
Original file line number Diff line number Diff line change @@ -13,6 +13,8 @@ public function setUp()
13
13
public function tearDown ()
14
14
{
15
15
Mockery::close ();
16
+
17
+ parent ::tearDown ();
16
18
}
17
19
18
20
protected function getPackageProviders ($ app )
@@ -159,4 +161,24 @@ public function testAboveLevel()
159
161
$ this ->app ->log ->emergency ('hello ' );
160
162
}
161
163
164
+ public function testFlushOnTerminate ()
165
+ {
166
+ $ clientMock = Mockery::mock ('RollbarNotifier ' );
167
+ $ clientMock ->shouldReceive ('flush ' )->once ();
168
+ $ this ->app ['rollbar.client ' ] = $ clientMock ;
169
+
170
+ $ handler = $ this ->app ->make ('rollbar.handler ' );
171
+
172
+ $ this ->app ->terminate ();
173
+ }
174
+
175
+ public function testDontFlushIfUnresolved ()
176
+ {
177
+ $ clientMock = Mockery::mock ('RollbarNotifier ' );
178
+ $ clientMock ->shouldReceive ('flush ' )->times (0 );
179
+ $ this ->app ['rollbar.client ' ] = $ clientMock ;
180
+
181
+ $ this ->app ->terminate ();
182
+ }
183
+
162
184
}
You can’t perform that action at this time.
0 commit comments