summaryrefslogtreecommitdiff
path: root/vendor/symfony/contracts/HttpClient/Test/TestHttpServer.php
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/symfony/contracts/HttpClient/Test/TestHttpServer.php')
-rw-r--r--vendor/symfony/contracts/HttpClient/Test/TestHttpServer.php49
1 files changed, 0 insertions, 49 deletions
diff --git a/vendor/symfony/contracts/HttpClient/Test/TestHttpServer.php b/vendor/symfony/contracts/HttpClient/Test/TestHttpServer.php
deleted file mode 100644
index 8e7a469c42..0000000000
--- a/vendor/symfony/contracts/HttpClient/Test/TestHttpServer.php
+++ /dev/null
@@ -1,49 +0,0 @@
-<?php
-
-/*
- * This file is part of the Symfony package.
- *
- * (c) Fabien Potencier <fabien@symfony.com>
- *
- * For the full copyright and license information, please view the LICENSE
- * file that was distributed with this source code.
- */
-
-namespace Symfony\Contracts\HttpClient\Test;
-
-use Symfony\Component\Process\PhpExecutableFinder;
-use Symfony\Component\Process\Process;
-
-/**
- * @experimental in 1.1
- */
-class TestHttpServer
-{
- private static $server;
-
- public static function start()
- {
- if (null !== self::$server) {
- return;
- }
-
- $finder = new PhpExecutableFinder();
- $process = new Process(array_merge([$finder->find(false)], $finder->findArguments(), ['-dopcache.enable=0', '-dvariables_order=EGPCS', '-S', '127.0.0.1:8057']));
- $process->setWorkingDirectory(__DIR__.'/Fixtures/web');
- $process->setTimeout(300);
- $process->start();
-
- self::$server = new class() {
- public $process;
-
- public function __destruct()
- {
- $this->process->stop();
- }
- };
-
- self::$server->process = $process;
-
- sleep('\\' === \DIRECTORY_SEPARATOR ? 10 : 1);
- }
-}