We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 72ed572 commit 0c6014dCopy full SHA for 0c6014d
src/Cookie/CookieJar.php
@@ -36,7 +36,7 @@ class CookieJar implements CookieJarInterface
36
public function __construct(private $strictMode = false, $cookieArray = [])
37
{
38
foreach ($cookieArray as $cookie) {
39
- if (! ($cookie instanceof SetCookie)) {
+ if (! $cookie instanceof SetCookie) {
40
$cookie = new SetCookie($cookie);
41
}
42
$this->setCookie($cookie);
0 commit comments