mirror of
https://github.com/guzzle/guzzle.git
synced 2025-02-25 02:22:57 +01:00
13 lines
219 B
PHP
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();
|
|
}
|
|
});
|