mirror of
https://github.com/Seldaek/monolog.git
synced 2025-08-08 14:16:42 +02:00
Fix php 5.3 syntax
This commit is contained in:
@@ -92,7 +92,7 @@ class NormalizerFormatterTest extends \PHPUnit_Framework_TestCase
|
|||||||
}
|
}
|
||||||
|
|
||||||
$formatter = new NormalizerFormatter('Y-m-d');
|
$formatter = new NormalizerFormatter('Y-m-d');
|
||||||
$e = new \SoapFault('foo', 'bar', 'hello', (object) ['foo' => 'world']);
|
$e = new \SoapFault('foo', 'bar', 'hello', (object) array('foo' => 'world'));
|
||||||
$formatted = $formatter->format(array(
|
$formatted = $formatter->format(array(
|
||||||
'exception' => $e,
|
'exception' => $e,
|
||||||
));
|
));
|
||||||
|
Reference in New Issue
Block a user