Skip to content

Commit 44516d7

Browse files
committed
fixup! use correct ResponseInterface
Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
1 parent 02204f0 commit 44516d7

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

build/integration/features/bootstrap/AppConfiguration.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@
2323
*/
2424
use Behat\Behat\Hook\Scope\AfterScenarioScope;
2525
use Behat\Behat\Hook\Scope\BeforeScenarioScope;
26-
use GuzzleHttp\Message\ResponseInterface;
2726
use PHPUnit\Framework\Assert;
27+
use Psr\Http\Message\ResponseInterface;
2828

2929
require __DIR__ . '/../../vendor/autoload.php';
3030

build/integration/features/bootstrap/CalDavContext.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
require __DIR__ . '/../../vendor/autoload.php';
2626

2727
use GuzzleHttp\Client;
28-
use GuzzleHttp\Message\ResponseInterface;
28+
use Psr\Http\Message\ResponseInterface;
2929

3030
class CalDavContext implements \Behat\Behat\Context\Context {
3131
/** @var string */

build/integration/features/bootstrap/Sharing.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@
2626
*
2727
*/
2828
use GuzzleHttp\Client;
29-
use GuzzleHttp\Message\ResponseInterface;
3029
use PHPUnit\Framework\Assert;
30+
use Psr\Http\Message\ResponseInterface;
3131

3232
require __DIR__ . '/../../vendor/autoload.php';
3333

@@ -48,7 +48,7 @@ trait Sharing {
4848
/** @var int */
4949
private $savedShareId = null;
5050

51-
/** @var \Psr\Http\Message\ResponseInterface */
51+
/** @var ResponseInterface */
5252
private $response;
5353

5454
/**

0 commit comments

Comments
 (0)