wiki.techinc.nl/includes/debug/logger/ConsoleSpi.php
Thiemo Kreuz 8a4e15db7f Add missing newline between <?php and namespace/use section
The rest of the codebase is using this code formatting standard.

Change-Id: I4d2ba61757a7e28d40096d9dc5915005c340d4f2
2019-06-03 13:36:48 +00:00

12 lines
207 B
PHP

<?php
namespace MediaWiki\Logger;
class ConsoleSpi implements Spi {
public function __construct( $config = [] ) {
}
public function getLogger( $channel ) {
return new ConsoleLogger( $channel );
}
}