1
0
mirror of https://github.com/Seldaek/monolog.git synced 2025-07-30 09:50:26 +02:00

Fix syntax

This commit is contained in:
Jordi Boggiano
2022-03-18 10:43:11 +01:00
committed by GitHub
parent f0e0dbaa52
commit 77b71e0baf

View File

@@ -101,7 +101,7 @@ class IntrospectionProcessor implements ProcessorInterface
'file' => isset($trace[$i - 1]['file']) ? $trace[$i - 1]['file'] : null,
'line' => isset($trace[$i - 1]['line']) ? $trace[$i - 1]['line'] : null,
'class' => isset($trace[$i]['class']) ? $trace[$i]['class'] : null,
'callType' => isset($trace[$i]['type']) ? $trace[$]['type'] : null,
'callType' => isset($trace[$i]['type']) ? $trace[$i]['type'] : null,
'function' => isset($trace[$i]['function']) ? $trace[$i]['function'] : null,
]
);