X-Git-Url: http://git.cyclocoop.org/?a=blobdiff_plain;f=includes%2Fdebug%2Flogger%2FSpi.php;h=8e0875f2125e3efe5cc7c006edf6d703ca1c7756;hb=9a6b2a4fffb82840d0bf780eb4ecb873ad64fa54;hp=51818a38ce37a835e076d49be1d3e68fd8b1eb48;hpb=2eb2fb4226baea250a49c5a9f0e49fd5198f77e7;p=lhc%2Fweb%2Fwiklou.git diff --git a/includes/debug/logger/Spi.php b/includes/debug/logger/Spi.php index 51818a38ce..8e0875f212 100644 --- a/includes/debug/logger/Spi.php +++ b/includes/debug/logger/Spi.php @@ -21,18 +21,17 @@ namespace MediaWiki\Logger; /** - * Service provider interface for \\Psr\\Log\\LoggerInterface implementation + * Service provider interface for \Psr\Log\LoggerInterface implementation * libraries. * * MediaWiki can be configured to use a class implementing this interface to - * create new \\Psr\\Log\\LoggerInterface instances via either the + * create new \Psr\Log\LoggerInterface instances via either the * $wgMWLoggerDefaultSpi global variable or code that constructs an instance * and registers it via the LoggerFactory::registerProvider() static method. * - * @see \\MediaWiki\\Logger\\LoggerFactory + * @see \MediaWiki\Logger\LoggerFactory * @since 1.25 - * @author Bryan Davis - * @copyright © 2014 Bryan Davis and Wikimedia Foundation. + * @copyright © 2014 Wikimedia Foundation and contributors */ interface Spi { @@ -40,7 +39,7 @@ interface Spi { * Get a logger instance. * * @param string $channel Logging channel - * @return \\Psr\\Log\\LoggerInterface Logger instance + * @return \Psr\Log\LoggerInterface Logger instance */ public function getLogger( $channel );