Skip to content

Commit b9d79d1

Browse files
#71: composer fix
1 parent 22c69f3 commit b9d79d1

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

src/BelowParseLevelException.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@
44

55
class BelowParseLevelException extends \Exception
66
{
7-
}
7+
}

src/RollbarServiceProvider.php

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@ public function boot()
3030
$app['log']->listen(function () use ($app) {
3131

3232
try {
33-
3433
$args = func_get_args();
3534

3635
// Laravel 5.4 returns a MessageLogged instance only
@@ -50,7 +49,7 @@ public function boot()
5049

5150
try {
5251
$result = $app[RollbarLogHandler::class]->log($level, $message, $context);
53-
} catch(BelowParseLevelException $exception) {
52+
} catch (BelowParseLevelException $exception) {
5453
return;
5554
}
5655

@@ -60,7 +59,6 @@ public function boot()
6059
print_r($result, true)
6160
);
6261
}
63-
6462
} catch (\Exception $exception) {
6563
}
6664
});

0 commit comments

Comments
 (0)