Completed
Push — master ( bc2be6...6ff7bb )
by Andrii
07:09
created

tests/_bootstrap.php (1 issue)

not multiple classes are defined in the same file.

Coding Style Compatibility Minor

Upgrade to new PHP Analysis Engine

These results are based on our legacy PHP analysis, consider migrating to our new PHP analysis engine instead. Learn more

1
<?php
2
/**
3
 * HiDev plugin for PHPUnit.
4
 *
5
 * @link      https://github.com/hiqdev/hidev-phpunit
6
 * @package   hidev-phpunit
7
 * @license   BSD-3-Clause
8
 * @copyright Copyright (c) 2015-2017, HiQDev (http://hiqdev.com/)
9
 */
10
11
error_reporting(E_ALL & ~E_NOTICE);
12
13
require_once __DIR__ . '/../vendor/autoload.php';
14
require_once __DIR__ . '/../vendor/yiisoft/yii2/Yii.php';
15
16
/*
17
 * Ensures compatibility with PHPUnit 6.x
18
 */
19
if (!class_exists('PHPUnit_Framework_Constraint') && class_exists('PHPUnit\Framework\Constraint\Constraint')) {
20
    abstract class PHPUnit_Framework_Constraint extends \PHPUnit\Framework\Constraint\Constraint
21
    {
22
    }
23
}
24
if (!class_exists('PHPUnit_Framework_TestCase') && class_exists('PHPUnit\Framework\TestCase')) {
25
    abstract class PHPUnit_Framework_TestCase extends \PHPUnit\Framework\TestCase
0 ignored issues
show
Coding Style Compatibility introduced by
PSR1 recommends that each class should be in its own file to aid autoloaders.

Having each class in a dedicated file usually plays nice with PSR autoloaders and is therefore a well established practice. If you use other autoloaders, you might not want to follow this rule.

Loading history...
26
    {
27
    }
28
}
29