1
0
mirror of https://github.com/Seldaek/monolog.git synced 2025-08-08 22:26:41 +02:00
This commit is contained in:
Jordi Boggiano
2012-12-14 12:15:30 +01:00
parent 6588c1633e
commit 9c8db38385
8 changed files with 9 additions and 12 deletions

View File

@@ -69,7 +69,7 @@ class AbstractProcessingHandlerTest extends TestCase
$handledRecord = null;
$handler->expects($this->once())
->method('write')
->will($this->returnCallback(function($record) use (&$handledRecord){
->will($this->returnCallback(function($record) use (&$handledRecord) {
$handledRecord = $record;
}))
;