1
0
mirror of https://github.com/guzzle/guzzle.git synced 2025-02-24 18:13:00 +01:00

Fixing URI template

This commit is contained in:
Michael Dowling 2013-07-31 13:31:27 -07:00
parent 18b4a4a4bf
commit 45cc33f9a7
2 changed files with 11 additions and 11 deletions

View File

@ -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

View File

@ -1,6 +1,6 @@
<?php
namespace Guzzle\Url\UriTemplate;
namespace Guzzle\Url;
/**
* Expands URI templates. Userland implementation of PECL uri_template.