From a5b38d0dfb60eee58c5056535018af326cb0db56 Mon Sep 17 00:00:00 2001 From: "akihito.nakano" Date: Fri, 30 Mar 2018 01:21:13 +0900 Subject: [PATCH] Fix 'Class Swagger\Client\FakeHttpClient not found' --- .../client/petstore/php/SwaggerClient-php/tests/RequestTest.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/samples/openapi3/client/petstore/php/SwaggerClient-php/tests/RequestTest.php b/samples/openapi3/client/petstore/php/SwaggerClient-php/tests/RequestTest.php index 779ae71ab027..cb1d9d62fb7e 100644 --- a/samples/openapi3/client/petstore/php/SwaggerClient-php/tests/RequestTest.php +++ b/samples/openapi3/client/petstore/php/SwaggerClient-php/tests/RequestTest.php @@ -4,6 +4,8 @@ namespace Swagger\Client; use Swagger\Client\Api\FakeApi; +require_once __DIR__ . '/FakeHttpClient.php'; + class RequestTest extends \PHPUnit_Framework_TestCase {