Skip to content

Commit

Permalink
Fix PHPCS errors.
Browse files Browse the repository at this point in the history
  • Loading branch information
markstory committed May 19, 2016
1 parent 01f016a commit a219020
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/Http/Client/Auth/Oauth.php
Expand Up @@ -163,7 +163,7 @@ public function baseString($request, $oauthValues)
*
* Section 9.1.2. of the Oauth spec
*
* @param Psr\Http\Message\UriInterface $url URL
* @param Psr\Http\Message\UriInterface $uri Uri object to build a normalized version of.
* @return string Normalized URL
*/
protected function _normalizedUrl($uri)
Expand Down
2 changes: 1 addition & 1 deletion src/Http/Client/Request.php
Expand Up @@ -38,7 +38,7 @@ class Request extends Message implements RequestInterface
* @param string $url The request URL
* @param string $method The HTTP method to use.
* @param array $headers The HTTP headers to set.
* @param array|string $body The request body to use.
* @param array|string $data The request body to use.
*/
public function __construct($url = '', $method = self::METHOD_GET, array $headers = [], $data = null)
{
Expand Down
1 change: 0 additions & 1 deletion tests/test_app/TestApp/Http/CompatAuth.php
Expand Up @@ -47,5 +47,4 @@ public function proxyAuthentication(Request $request, array $credentials)
{
$request->header('Proxy-Authorization', 'Bearer abc123');
}

}

0 comments on commit a219020

Please sign in to comment.