Skip to content

Commit 9554406

Browse files
committed
Fix CI
1 parent e9afe97 commit 9554406

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/Codeception/Module/PhpBrowser.php

+2-1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
use Codeception\TestInterface;
1313
use Codeception\Util\Uri;
1414
use GuzzleHttp\Client as GuzzleClient;
15+
use Symfony\Component\BrowserKit\AbstractBrowser;
1516

1617
/**
1718
* Uses [Guzzle](https://docs.guzzlephp.org/en/stable/) to interact with your application over CURL.
@@ -123,7 +124,7 @@ class PhpBrowser extends InnerBrowser implements Remote, MultiSession
123124
/**
124125
* @var Guzzle
125126
*/
126-
public $client;
127+
public ?AbstractBrowser $client = null;
127128

128129
public ?GuzzleClient $guzzle = null;
129130

0 commit comments

Comments
 (0)