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 2cf1cfd commit ae394b6Copy full SHA for ae394b6
Tests/SymfonyRollbarBundle/EventListener/ExceptionListenerTest.php
@@ -175,9 +175,9 @@ public function testSkipException()
175
176
/**
177
* @dataProvider generatorHandleParams
178
- * @param $data
+ * @param \Throwable $data
179
*/
180
- public function testHandleParams(\Throwable $data)
+ public function testHandleParams($data)
181
{
182
$container = static::$kernel->getContainer();
183
@@ -205,6 +205,7 @@ public function generatorHandleParams()
205
[new \Exception('This is new exception')],
206
[new \Exception('This is one more new exception')],
207
[new \TypeError('This is TypeError')],
208
+ [new \DivisionByZeroError('This is DivisionByZeroError')],
209
];
210
}
211
0 commit comments