The rest of the codebase is using this code formatting standard. Change-Id: I4d2ba61757a7e28d40096d9dc5915005c340d4f2
12 lines
207 B
PHP
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 );
|
|
}
|
|
}
|