1<?php
2/*
3 * This file is part of PHPUnit.
4 *
5 * (c) Sebastian Bergmann <sebastian@phpunit.de>
6 *
7 * For the full copyright and license information, please view the LICENSE
8 * file that was distributed with this source code.
9 */
10
11/**
12 * Wrapper for PHP warnings.
13 * You can disable notice-to-exception conversion by setting
14 *
15 * <code>
16 * PHPUnit_Framework_Error_Warning::$enabled = false;
17 * </code>
18 */
19class PHPUnit_Framework_Error_Warning extends PHPUnit_Framework_Error
20{
21    public static $enabled = true;
22}
23