diff options
Diffstat (limited to 'build/integration/features/bootstrap/CommandLine.php')
-rw-r--r-- | build/integration/features/bootstrap/CommandLine.php | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/build/integration/features/bootstrap/CommandLine.php b/build/integration/features/bootstrap/CommandLine.php index 2c717e7f5ed..c6fd232ac9c 100644 --- a/build/integration/features/bootstrap/CommandLine.php +++ b/build/integration/features/bootstrap/CommandLine.php @@ -59,8 +59,7 @@ trait CommandLine { // Clean opcode cache $client = new GuzzleHttp\Client(); - $request = $client->createRequest('GET', 'http://localhost:8080/apps/testing/clean_opcode_cache.php'); - $client->send($request); + $client->request('GET', 'http://localhost:8080/apps/testing/clean_opcode_cache.php'); return $this->lastCode; } |