Skip to content

Commit

Permalink
Changing the namespace for the cookie implementation
Browse files Browse the repository at this point in the history
  • Loading branch information
Florian Krämer committed Feb 13, 2017
1 parent 3f96d99 commit 0c71aee
Show file tree
Hide file tree
Showing 9 changed files with 14 additions and 14 deletions.
Expand Up @@ -11,7 +11,7 @@
* @since 3.5.0
* @license http://www.opensource.org/licenses/mit-license.php MIT License
*/
namespace Cake\Http\Client\Cookie;
namespace Cake\Http\Cookie;

use Cake\Utility\Hash;
use Cake\Utility\Security;
Expand Down
Expand Up @@ -11,7 +11,7 @@
* @since 3.5.0
* @license http://www.opensource.org/licenses/mit-license.php MIT License
*/
namespace Cake\Http\Client\Cookie;
namespace Cake\Http\Cookie;

class CookieCollection
{
Expand Down
Expand Up @@ -12,7 +12,7 @@
* @since 3.1.6
* @license http://www.opensource.org/licenses/mit-license.php MIT License
*/
namespace Cake\Http\Client\Cookie;
namespace Cake\Http\Cookie;

use Cake\Utility\Security;
use RuntimeException;
Expand Down
Expand Up @@ -11,7 +11,7 @@
* @since 3.5.0
* @license http://www.opensource.org/licenses/mit-license.php MIT License
*/
namespace Cake\Http\Client\Cookie;
namespace Cake\Http\Cookie;

interface CookieInterface
{
Expand Down
Expand Up @@ -11,7 +11,7 @@
* @since 3.5.0
* @license http://www.opensource.org/licenses/mit-license.php MIT License
*/
namespace Cake\Http\Client\Cookie;
namespace Cake\Http\Cookie;

use InvalidArgumentException;
use Iterator;
Expand Down
Expand Up @@ -11,7 +11,7 @@
* @since 3.5.0
* @license http://www.opensource.org/licenses/mit-license.php MIT License
*/
namespace Cake\Http\Client\Cookie;
namespace Cake\Http\Cookie;

use Psr\Http\Message\ResponseInterface;

Expand Down
Expand Up @@ -10,10 +10,10 @@
* @since 3.0.0
* @license http://www.opensource.org/licenses/mit-license.php MIT License
*/
namespace Cake\Test\TestCase\Http\Client;
namespace Cake\Test\TestCase\Http\Cookie;

use Cake\Chronos\Chronos;
use Cake\Http\Client\Cookie\Cookie;
use Cake\Http\Cookie\Cookie;
use Cake\TestSuite\TestCase;

/**
Expand Down
Expand Up @@ -10,10 +10,10 @@
* @since 3.0.0
* @license http://www.opensource.org/licenses/mit-license.php MIT License
*/
namespace Cake\Test\TestCase\Http\Client;
namespace Cake\Test\TestCase\Http\Cookie;

use Cake\Http\Client\Cookie\Cookie;
use Cake\Http\Client\Cookie\RequestCookies;
use Cake\Http\Cookie\Cookie;
use Cake\Http\Cookie\RequestCookies;
use Cake\Http\ServerRequest;
use Cake\TestSuite\TestCase;

Expand Down
Expand Up @@ -10,10 +10,10 @@
* @since 3.0.0
* @license http://www.opensource.org/licenses/mit-license.php MIT License
*/
namespace Cake\Test\TestCase\Http\Client;
namespace Cake\Test\TestCase\Http\Cookie;

use Cake\Http\Client\Cookie\Cookie;
use Cake\Http\Client\Cookie\ResponseCookies;
use Cake\Http\Cookie\Cookie;
use Cake\Http\Cookie\ResponseCookies;
use Cake\TestSuite\TestCase;

/**
Expand Down

0 comments on commit 0c71aee

Please sign in to comment.