~ballot/wordpress/openstack-objectstorage-breaking-insight

« back to all changes in this revision

Viewing changes to vendor/phpunit/phpunit/src/Framework/Error/Notice.php

  • Committer: Jacek Nykis
  • Date: 2015-02-11 15:35:31 UTC
  • Revision ID: jacek.nykis@canonical.com-20150211153531-hmy6zi0ov2qfkl0b
Initial commit

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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 notices.
 
13
 * You can disable notice-to-exception conversion by setting
 
14
 *
 
15
 * <code>
 
16
 * PHPUnit_Framework_Error_Notice::$enabled = false;
 
17
 * </code>
 
18
 *
 
19
 * @package    PHPUnit
 
20
 * @subpackage Framework_Error
 
21
 * @author     Sebastian Bergmann <sebastian@phpunit.de>
 
22
 * @copyright  Sebastian Bergmann <sebastian@phpunit.de>
 
23
 * @license    http://www.opensource.org/licenses/BSD-3-Clause  The BSD 3-Clause License
 
24
 * @link       http://www.phpunit.de/
 
25
 * @since      Class available since Release 3.3.0
 
26
 */
 
27
class PHPUnit_Framework_Error_Notice extends PHPUnit_Framework_Error
 
28
{
 
29
    public static $enabled = true;
 
30
}