Rename namespace of CookieException (#4544)

This commit is contained in:
Mostafa Khudair 2021-04-10 19:48:09 +02:00 committed by GitHub
parent 4841326693
commit e8efe58e83
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
12 changed files with 12 additions and 12 deletions

View File

@ -13,11 +13,11 @@ use CodeIgniter\Cache\CacheInterface;
use CodeIgniter\Config\Factories;
use CodeIgniter\Cookie\Cookie;
use CodeIgniter\Cookie\CookieStore;
use CodeIgniter\Cookie\Exceptions\CookieException;
use CodeIgniter\Database\BaseConnection;
use CodeIgniter\Database\ConnectionInterface;
use CodeIgniter\Debug\Timer;
use CodeIgniter\Files\Exceptions\FileNotFoundException;
use CodeIgniter\HTTP\Exceptions\CookieException;
use CodeIgniter\HTTP\Exceptions\HTTPException;
use CodeIgniter\HTTP\RedirectResponse;
use CodeIgniter\HTTP\RequestInterface;

View File

@ -12,7 +12,7 @@
namespace CodeIgniter\Cookie;
use ArrayAccess;
use CodeIgniter\HTTP\Exceptions\CookieException;
use CodeIgniter\Cookie\Exceptions\CookieException;
use Config\App;
use Config\Cookie as CookieConfig;
use DateTimeInterface;

View File

@ -12,7 +12,7 @@
namespace CodeIgniter\Cookie;
use ArrayIterator;
use CodeIgniter\HTTP\Exceptions\CookieException;
use CodeIgniter\Cookie\Exceptions\CookieException;
use Countable;
use IteratorAggregate;
use Traversable;

View File

@ -9,7 +9,7 @@
* file that was distributed with this source code.
*/
namespace CodeIgniter\HTTP\Exceptions;
namespace CodeIgniter\Cookie\Exceptions;
use CodeIgniter\Exceptions\FrameworkException;

View File

@ -13,7 +13,7 @@ namespace CodeIgniter\HTTP;
use CodeIgniter\Cookie\Cookie;
use CodeIgniter\Cookie\CookieStore;
use CodeIgniter\HTTP\Exceptions\CookieException;
use CodeIgniter\Cookie\Exceptions\CookieException;
use CodeIgniter\HTTP\Exceptions\HTTPException;
use Config\App;
use Config\ContentSecurityPolicy as CSPConfig;

View File

@ -13,7 +13,7 @@ namespace CodeIgniter\HTTP;
use CodeIgniter\Cookie\Cookie;
use CodeIgniter\Cookie\CookieStore;
use CodeIgniter\HTTP\Exceptions\CookieException;
use CodeIgniter\Cookie\Exceptions\CookieException;
use CodeIgniter\HTTP\Exceptions\HTTPException;
use CodeIgniter\Pager\PagerInterface;
use Config\Services;

View File

@ -3,7 +3,7 @@
namespace CodeIgniter\Cookie;
use CodeIgniter\Cookie\CookieStore;
use CodeIgniter\HTTP\Exceptions\CookieException;
use CodeIgniter\Cookie\Exceptions\CookieException;
use CodeIgniter\Test\CIUnitTestCase;
use DateTimeImmutable;
use PHPUnit\Framework\MockObject\MockObject;

View File

@ -3,7 +3,7 @@
namespace CodeIgniter\Cookie;
use CodeIgniter\Cookie\Cookie;
use CodeIgniter\HTTP\Exceptions\CookieException;
use CodeIgniter\Cookie\Exceptions\CookieException;
use CodeIgniter\Test\CIUnitTestCase;
use Config\Cookie as CookieConfig;
use DateTimeImmutable;

View File

@ -3,7 +3,7 @@ namespace CodeIgniter\HTTP;
use CodeIgniter\Cookie\Cookie;
use CodeIgniter\Cookie\CookieStore;
use CodeIgniter\HTTP\Exceptions\CookieException;
use CodeIgniter\Cookie\Exceptions\CookieException;
use CodeIgniter\Test\CIUnitTestCase;
use Config\App;
use Config\Cookie as CookieConfig;

View File

@ -3,7 +3,7 @@
namespace CodeIgniter\HTTP;
use CodeIgniter\Config\Factories;
use CodeIgniter\HTTP\Exceptions\CookieException;
use CodeIgniter\Cookie\Exceptions\CookieException;
use CodeIgniter\HTTP\Exceptions\HTTPException;
use CodeIgniter\Test\CIUnitTestCase;
use CodeIgniter\Test\Mock\MockResponse;

View File

@ -1,7 +1,7 @@
<?php
namespace CodeIgniter\Helpers;
use CodeIgniter\HTTP\Exceptions\CookieException;
use CodeIgniter\Cookie\Exceptions\CookieException;
use CodeIgniter\HTTP\IncomingRequest;
use CodeIgniter\HTTP\URI;
use CodeIgniter\HTTP\UserAgent;

View File

@ -3,7 +3,7 @@
namespace CodeIgniter\Session;
use CodeIgniter\Config\Factories;
use CodeIgniter\HTTP\Exceptions\CookieException;
use CodeIgniter\Cookie\Exceptions\CookieException;
use CodeIgniter\Session\Handlers\FileHandler;
use CodeIgniter\Test\CIUnitTestCase;
use CodeIgniter\Test\Mock\MockSession;