mirror of
https://github.com/Seldaek/monolog.git
synced 2025-07-30 18:00:17 +02:00
Fix array syntax for Travis CI
This commit is contained in:
@@ -33,8 +33,8 @@ class SyslogUdpHandlerTest extends TestCase
|
||||
$host = gethostname();
|
||||
|
||||
$handler = $this->getMockBuilder('\Monolog\Handler\SyslogUdpHandler')
|
||||
->setConstructorArgs(["127.0.0.1", 514, "php", "authpriv"])
|
||||
->setMethods(['getDateTime'])
|
||||
->setConstructorArgs(array("127.0.0.1", 514, "php", "authpriv"))
|
||||
->setMethods(array('getDateTime'))
|
||||
->getMock();
|
||||
|
||||
$handler->method('getDateTime')
|
||||
|
Reference in New Issue
Block a user