OXIESEC PANEL
- Current Dir:
/
/
var
/
www
/
firebase
/
vendor
/
google
/
auth
/
tests
/
HttpHandler
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
08/12/2024 10:36:16 AM
rwxr-xr-x
📄
Guzzle6HttpHandlerTest.php
2.1 KB
08/12/2024 10:33:45 AM
rw-r--r--
📄
Guzzle7HttpHandlerTest.php
1.02 KB
08/12/2024 10:33:45 AM
rw-r--r--
📄
HttpHandlerFactoryTest.php
2.98 KB
08/12/2024 10:33:45 AM
rw-r--r--
Editing: Guzzle7HttpHandlerTest.php
Close
<?php /* * Copyright 2020 Google Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ namespace Google\Auth\Tests\HttpHandler; use Google\Auth\HttpHandler\Guzzle7HttpHandler; /** * @group http-handler */ class Guzzle7HttpHandlerTest extends Guzzle6HttpHandlerTest { public function setUp(): void { $this->onlyGuzzle7(); $this->client = $this->prophesize('GuzzleHttp\ClientInterface'); $this->handler = new Guzzle7HttpHandler($this->client->reveal()); } }