1
0
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:
Jordi Boggiano
2019-11-12 22:10:50 +01:00
parent 12a76ad61e
commit 05f6ed7205

View File

@@ -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,
)); ));