14 lines
192 B
PHP
14 lines
192 B
PHP
<?php
|
|
|
|
namespace Codeception\PHPUnit;
|
|
|
|
class Init
|
|
{
|
|
/**
|
|
* @api
|
|
*/
|
|
public static function init()
|
|
{
|
|
require_once __DIR__ . DIRECTORY_SEPARATOR . 'shim.php';
|
|
}
|
|
} |