Skip to content

Commit

Permalink
Fix CI
Browse files Browse the repository at this point in the history
  • Loading branch information
TavoNiievez committed Dec 5, 2021
1 parent e9afe97 commit 9554406
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/Codeception/Module/PhpBrowser.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
use Codeception\TestInterface;
use Codeception\Util\Uri;
use GuzzleHttp\Client as GuzzleClient;
use Symfony\Component\BrowserKit\AbstractBrowser;

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

public ?GuzzleClient $guzzle = null;

Expand Down

0 comments on commit 9554406

Please sign in to comment.