From 45cc33f9a768a399aec88895ff758f7582e45b14 Mon Sep 17 00:00:00 2001 From: Michael Dowling Date: Wed, 31 Jul 2013 13:31:27 -0700 Subject: [PATCH] Fixing URI template --- src/Guzzle/Http/Client.php | 20 ++++++++++---------- src/Guzzle/Url/UriTemplate.php | 2 +- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/src/Guzzle/Http/Client.php b/src/Guzzle/Http/Client.php index 33ac1b1d..37a6e112 100644 --- a/src/Guzzle/Http/Client.php +++ b/src/Guzzle/Http/Client.php @@ -24,20 +24,20 @@ class Client implements ClientInterface const REQUEST_OPTIONS = 'request.options'; - /** @var string The user agent string to set on each request */ - protected $userAgent; - - /** @var Collection Parameter object holding configuration data */ - private $config; - - /** @var string Base URL of the client */ - private $baseUrl; + /** @var MessageFactoryInterface Request factory used by the client */ + protected $messageFactory; /** @var AdapterInterface */ private $adapter; - /** @var MessageFactoryInterface Request factory used by the client */ - protected $messageFactory; + /** @var string Base URL of the client */ + private $baseUrl; + + /** @var Collection Parameter object holding configuration data */ + private $config; + + /** @var string The user agent string to set on each request */ + private $userAgent; /** * @param array $config Client configuration settings diff --git a/src/Guzzle/Url/UriTemplate.php b/src/Guzzle/Url/UriTemplate.php index e5bd9a65..ab627cc5 100644 --- a/src/Guzzle/Url/UriTemplate.php +++ b/src/Guzzle/Url/UriTemplate.php @@ -1,6 +1,6 @@