Skip to content

Commit 0c6014d

Browse files
authored
Format code (#5063)
1 parent 72ed572 commit 0c6014d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Cookie/CookieJar.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ class CookieJar implements CookieJarInterface
3636
public function __construct(private $strictMode = false, $cookieArray = [])
3737
{
3838
foreach ($cookieArray as $cookie) {
39-
if (! ($cookie instanceof SetCookie)) {
39+
if (! $cookie instanceof SetCookie) {
4040
$cookie = new SetCookie($cookie);
4141
}
4242
$this->setCookie($cookie);

0 commit comments

Comments
 (0)