We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b9d79d1 commit 24cca70Copy full SHA for 24cca70
tests/RollbarTest.php
@@ -114,7 +114,11 @@ public function testLogListener()
114
$clientMock = \Mockery::mock('Rollbar\RollbarLogger');
115
116
$clientMock->shouldReceive('log')->times(2)->andReturn($responseMock);
117
- $clientMock->shouldReceive('log')->times(1)->with('error', $exception, ['foo' => 'bar'])->andReturn($responseMock);
+ $clientMock->
118
+ shouldReceive('log')->
119
+ times(1)->
120
+ with('error', $exception, ['foo' => 'bar'])->
121
+ andReturn($responseMock);
122
123
$handlerMock = \Mockery::mock('Rollbar\Laravel\RollbarLogHandler', [$clientMock, $this->app]);
124
0 commit comments