X-Git-Url: http://git.cyclocoop.org/?a=blobdiff_plain;f=tests%2Fphpunit%2Fincludes%2FTestLogger.php;h=17a41823cc41cce7923ac75ae2373d8273afb924;hb=a0a8f165506a55c4d70ef2bb3cec4d4309ed33d8;hp=84a6adf2acadaedb73e4001febb5a57c621aedaf;hpb=cf35ff756c89ca6d6e003b440076df5ebe7ccef7;p=lhc%2Fweb%2Fwiklou.git diff --git a/tests/phpunit/includes/TestLogger.php b/tests/phpunit/includes/TestLogger.php index 84a6adf2ac..17a41823cc 100644 --- a/tests/phpunit/includes/TestLogger.php +++ b/tests/phpunit/includes/TestLogger.php @@ -2,7 +2,7 @@ /** * Testing logger * - * Copyright (C) 2015 Brad Jorsch + * Copyright (C) 2015 Wikimedia Foundation and contributors * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -20,7 +20,6 @@ * http://www.gnu.org/copyleft/gpl.html * * @file - * @author Brad Jorsch */ use Psr\Log\LogLevel; @@ -41,8 +40,8 @@ class TestLogger extends \Psr\Log\AbstractLogger { * @param bool $collect Whether to collect logs. @see setCollect() * @param callable $filter Filter logs before collecting/printing. Signature is * string|null function ( string $message, string $level, array $context ); - * @param bool $collectContext Whether to keep the context passed to log. - * @since 1.29 @see setCollectContext() + * @param bool $collectContext Whether to keep the context passed to log + * (since 1.29, @see setCollectContext()). */ public function __construct( $collect = false, $filter = null, $collectContext = false ) { $this->collect = $collect;