Skip to content

Commit

Permalink
Moved: http adapter interface
Browse files Browse the repository at this point in the history
  • Loading branch information
toin0u committed May 26, 2013
1 parent bd27824 commit b675e41
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/HttpAdapter/BuzzHttpAdapter.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
* @author William Durand <william.durand1@gmail.com>
* @author Antoine Corcy <contact@sbin.dk>
*/
class BuzzHttpAdapter implements \HttpAdapterInterface
class BuzzHttpAdapter implements HttpAdapterInterface
{
/**
* {@inheritDoc}
Expand Down
2 changes: 1 addition & 1 deletion src/HttpAdapter/CurlHttpAdapter.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
* @author William Durand <william.durand1@gmail.com>
* @author Antoine Corcy <contact@sbin.dk>
*/
class CurlHttpAdapter implements \HttpAdapterInterface
class CurlHttpAdapter implements HttpAdapterInterface
{
/**
* {@inheritDoc}
Expand Down
2 changes: 1 addition & 1 deletion src/HttpAdapter/GuzzleHttpAdapter.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
*
* @link http://www.guzzlephp.org
*/
class GuzzleHttpAdapter implements \HttpAdapterInterface
class GuzzleHttpAdapter implements HttpAdapterInterface
{
/**
* {@inheritDoc}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@
* file that was distributed with this source code.
*/

namespace HttpAdapter;

/**
* HttpAdapter interface.
*
Expand Down
2 changes: 1 addition & 1 deletion src/HttpAdapter/SocketHttpAdapter.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
* @author Markus Bachmann <markus.bachmann@bachi.biz>
* @author Antoine Corcy <contact@sbin.dk>
*/
class SocketHttpAdapter implements \HttpAdapterInterface
class SocketHttpAdapter implements HttpAdapterInterface
{
/**
* @var integer
Expand Down
2 changes: 1 addition & 1 deletion src/HttpAdapter/ZendHttpAdapter.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
* @author William Durand <william.durand1@gmail.com>
* @author Antoine Corcy <contact@sbin.dk>
*/
class ZendHttpAdapter implements \HttpAdapterInterface
class ZendHttpAdapter implements HttpAdapterInterface
{
/**
* {@inheritDoc}
Expand Down

0 comments on commit b675e41

Please sign in to comment.