aboutsummaryrefslogtreecommitdiffstats
path: root/public/system/storage/vendor/guzzlehttp/ringphp/tests/bootstrap.php
blob: 017610fe0d86c2258a5baacd5b889ebfc002fb28 (plain)
1
2
3
4
5
6
7
8
9
10
11
<?php
require __DIR__ . '/../vendor/autoload.php';
require __DIR__ . '/Client/Server.php';

use GuzzleHttp\Tests\Ring\Client\Server;

Server::start();

register_shutdown_function(function () {
    Server::stop();
});