1
0
mirror of https://github.com/guzzle/guzzle.git synced 2025-02-25 02:22:57 +01:00
guzzle/tests/bootstrap.php
2014-03-22 22:05:45 -07:00

13 lines
219 B
PHP

<?php
require __DIR__ . '/../vendor/autoload.php';
require __DIR__ . '/Server.php';
use GuzzleHttp\Tests\Server;
register_shutdown_function(function () {
if (Server::$started) {
Server::stop();
}
});