mirror of
https://github.com/Seldaek/monolog.git
synced 2025-08-06 21:26:43 +02:00
Undo this LocalSocket fiasco, fix tests for latest phpunit
This commit is contained in:
@@ -43,7 +43,10 @@ class GelfHandlerTest extends TestCase
|
||||
|
||||
protected function getMessagePublisher()
|
||||
{
|
||||
return $this->createMock('Gelf\Publisher', ['publish'], [], '', false);
|
||||
return $this->getMockBuilder('Gelf\Publisher')
|
||||
->setMethods(['publish'])
|
||||
->disableOriginalConstructor()
|
||||
->getMock();
|
||||
}
|
||||
|
||||
public function testDebug()
|
||||
|
Reference in New Issue
Block a user