From 56634389cccf18f2993c45cd255fa66691de7087 Mon Sep 17 00:00:00 2001 From: Reedy Date: Sun, 29 Nov 2015 04:51:33 +0000 Subject: [PATCH] Fixup MW for HHVM Repo Authorative mode https://github.com/facebook/hhvm/issues/5834 https://github.com/facebook/hhvm/issues/5833 Change-Id: I138ffa5df874c5660897dc7feab36adef9f32aea --- includes/debug/logger/LoggerFactory.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/debug/logger/LoggerFactory.php b/includes/debug/logger/LoggerFactory.php index 1573d7b086..b0a10cecf8 100644 --- a/includes/debug/logger/LoggerFactory.php +++ b/includes/debug/logger/LoggerFactory.php @@ -96,7 +96,7 @@ class LoggerFactory { public static function getInstance( $channel ) { static $hasPSR3Interface = null; if ( $hasPSR3Interface === null ) { - $hasPSR3Interface = interface_exists( '\Psr\Log\LoggerInterface' ); + $hasPSR3Interface = interface_exists( 'Psr\Log\LoggerInterface' ); if ( !$hasPSR3Interface ) { $message = ( 'MediaWiki requires the PSR-3 logging ' . -- 2.20.1