Init.php 192 B

1234567891011121314
  1. <?php
  2. namespace Codeception\PHPUnit;
  3. class Init
  4. {
  5. /**
  6. * @api
  7. */
  8. public static function init()
  9. {
  10. require_once __DIR__ . DIRECTORY_SEPARATOR . 'shim.php';
  11. }
  12. }