Merge "Better pageprops API example"
[lhc/web/wiklou.git] / includes / debug / logger / monolog / Shims.php
1 <?php
2 /**
3 * This program is free software; you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License as published by
5 * the Free Software Foundation; either version 2 of the License, or
6 * (at your option) any later version.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License along
14 * with this program; if not, write to the Free Software Foundation, Inc.,
15 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
16 * http://www.gnu.org/copyleft/gpl.html
17 *
18 * @file
19 */
20
21 /**
22 * Backwards compatibility stub for usage from before the introduction of
23 * the MediaWiki\Logger namespace.
24 *
25 * @deprecated since 1.25 Use \MediaWiki\Logger\Monolog\LegacyHandler
26 * @todo This class should be removed before the 1.25 final release.
27 */
28 class MWLoggerMonologHandler extends \MediaWiki\Logger\Monolog\LegacyHandler {
29 }
30
31 /**
32 * Backwards compatibility stub for usage from before the introduction of
33 * the MediaWiki\Logger namespace.
34 *
35 * @deprecated since 1.25 Use \MediaWiki\Logger\Monolog\LegacyFormatter
36 * @todo This class should be removed before the 1.25 final release.
37 */
38 class MWLoggerMonologLegacyFormatter extends \MediaWiki\Logger\Monolog\LegacyFormatter {
39 }
40
41 /**
42 * Backwards compatibility stub for usage from before the introduction of
43 * the MediaWiki\Logger namespace.
44 *
45 * @deprecated since 1.25 Use \MediaWiki\Logger\Monolog\WikiProcessor
46 * @todo This class should be removed before the 1.25 final release.
47 */
48 class MWLoggerMonologProcessor extends \MediaWiki\Logger\Monolog\WikiProcessor {
49 }
50
51 /**
52 * Backwards compatibility stub for usage from before the introduction of
53 * the MediaWiki\Logger namespace.
54 *
55 * @deprecated since 1.25 Use \MediaWiki\Logger\MonologSpi
56 * @todo This class should be removed before the 1.25 final release.
57 */
58 class MWLoggerMonologSpi extends \MediaWiki\Logger\MonologSpi {
59 }
60
61 /**
62 * Backwards compatibility stub for usage from before the introduction of
63 * the MediaWiki\Logger namespace.
64 *
65 * @deprecated since 1.25 Use \MediaWiki\Logger\Monolog\SyslogHandler
66 * @todo This class should be removed before the 1.25 final release.
67 */
68 class MWLoggerMonologSyslogHandler extends \MediaWiki\Logger\Monolog\SyslogHandler {
69 }