Skip to content

Commit

Permalink
[#14602] - Reworked interface and definitions; Adjusted tests
Browse files Browse the repository at this point in the history
  • Loading branch information
niden committed Dec 9, 2019
1 parent 0936e58 commit e54c0ed
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions phalcon/Http/Cookie.zep
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ use Phalcon\Crypt\CryptInterface;
use Phalcon\Crypt\Mismatch;
use Phalcon\Filter\FilterInterface;
use Phalcon\Http\Response\Exception;
use Phalcon\Http\Cookie\CookieInterface;
use Phalcon\Http\Cookie\Exception as CookieException;
use Phalcon\Session\ManagerInterface as SessionManagerInterface;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
* file that was distributed with this source code.
*/

namespace Phalcon\Http;
namespace Phalcon\Http\Cookie;

/**
* Interface for Phalcon\Http\Cookie
Expand Down
2 changes: 1 addition & 1 deletion phalcon/Http/Response/Cookies.zep
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ namespace Phalcon\Http\Response;

use Phalcon\Di\DiInterface;
use Phalcon\Di\AbstractInjectionAware;
use Phalcon\Http\CookieInterface;
use Phalcon\Http\Cookie\Exception;
use Phalcon\Http\Cookie\CookieInterface;

/**
* Phalcon\Http\Response\Cookies
Expand Down
2 changes: 1 addition & 1 deletion phalcon/Http/Response/CookiesInterface.zep
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

namespace Phalcon\Http\Response;

use Phalcon\Http\CookieInterface;
use Phalcon\Http\Cookie\CookieInterface;

/**
* Phalcon\Http\Response\CookiesInterface
Expand Down
2 changes: 1 addition & 1 deletion tests/unit/Http/Response/CookiesCest.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

use Phalcon\Di;
use Phalcon\Http\Cookie;
use Phalcon\Http\CookieInterface;
use Phalcon\Http\Cookie\CookieInterface;
use Phalcon\Http\Response;
use Phalcon\Http\Response\Cookies;
use Phalcon\Session\Adapter\Stream as SessionFiles;
Expand Down

0 comments on commit e54c0ed

Please sign in to comment.