X-Git-Url: http://git.heureux-cyclage.org/?a=blobdiff_plain;f=includes%2Fdebug%2Flogger%2FMonologSpi.php;h=ff653ab24132daabbe9e0cc4e47d347d8bd54adc;hb=c2cedf71ee1464f8b4c974906cbca4c8cd80a4e6;hp=670ba391e7fbaf4f34b715740a2338921a607cb8;hpb=1b4f3579017a46344a9f1857db241bc3909bb7f5;p=lhc%2Fweb%2Fwiklou.git diff --git a/includes/debug/logger/MonologSpi.php b/includes/debug/logger/MonologSpi.php index 670ba391e7..ff653ab241 100644 --- a/includes/debug/logger/MonologSpi.php +++ b/includes/debug/logger/MonologSpi.php @@ -199,7 +199,7 @@ class MonologSpi implements Spi { if ( isset( $spec['calls'] ) ) { foreach ( $spec['calls'] as $method => $margs ) { - call_user_func_array( [ $obj, $method ], $margs ); + $obj->$method( ...$margs ); } }