Browse Source

Merge pull request #16422 from cakephp/fix-phpstan

Remove unneded phpstan suppression
ADmad 4 years ago
parent
commit
bda8544121
1 changed files with 0 additions and 1 deletions
  1. 0 1
      src/Http/Client.php

+ 0 - 1
src/Http/Client.php

@@ -628,7 +628,6 @@ class Client implements ClientInterface
             $headers['Content-Type'] = 'application/x-www-form-urlencoded';
         }
 
-        /** @phpstan-ignore-next-line */
         $request = new Request($url, $method, $headers, $data);
         $request = $request->withProtocolVersion($this->getConfig('protocolVersion'));
         $cookies = $options['cookies'] ?? [];