Skip to content

Commit

Permalink
remove space in concatination
Browse files Browse the repository at this point in the history
  • Loading branch information
compeak committed Apr 1, 2016
1 parent 91707bb commit 35128a1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Backend/Request.php
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ public function __construct(ClientInterface $client)
protected function createRequest($url, $method = 'GET', $options = [])
{
trigger_error('This method is not used anymore and will be removed with version 6.'
. ' Use \GuzzleHttp\Psr7\Request directly instead.', E_USER_DEPRECATED);
.' Use \GuzzleHttp\Psr7\Request directly instead.', E_USER_DEPRECATED);

return new \GuzzleHttp\Psr7\Request($method, $url);
}
Expand Down

0 comments on commit 35128a1

Please sign in to comment.