-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2471 from codeigniter4/escaper
Transition from Zend Escaper to Laminas Escaper
- Loading branch information
Showing
15 changed files
with
70 additions
and
72 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
11 changes: 5 additions & 6 deletions
11
system/ThirdParty/ZendEscaper/Escaper.php → system/ThirdParty/Escaper/Escaper.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
13 changes: 13 additions & 0 deletions
13
system/ThirdParty/Escaper/Exception/ExceptionInterface.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
<?php | ||
|
||
/** | ||
* @see https://github.com/laminas/laminas-escaper for the canonical source repository | ||
* @copyright https://github.com/laminas/laminas-escaper/blob/master/COPYRIGHT.md | ||
* @license https://github.com/laminas/laminas-escaper/blob/master/LICENSE.md New BSD License | ||
*/ | ||
|
||
namespace Laminas\Escaper\Exception; | ||
|
||
interface ExceptionInterface | ||
{ | ||
} |
17 changes: 17 additions & 0 deletions
17
system/ThirdParty/Escaper/Exception/InvalidArgumentException.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
<?php | ||
|
||
/** | ||
* @see https://github.com/laminas/laminas-escaper for the canonical source repository | ||
* @copyright https://github.com/laminas/laminas-escaper/blob/master/COPYRIGHT.md | ||
* @license https://github.com/laminas/laminas-escaper/blob/master/LICENSE.md New BSD License | ||
*/ | ||
|
||
namespace Laminas\Escaper\Exception; | ||
|
||
/** | ||
* Invalid argument exception | ||
*/ | ||
class InvalidArgumentException extends \InvalidArgumentException implements | ||
ExceptionInterface | ||
{ | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
<?php | ||
|
||
/** | ||
* @see https://github.com/laminas/laminas-escaper for the canonical source repository | ||
* @copyright https://github.com/laminas/laminas-escaper/blob/master/COPYRIGHT.md | ||
* @license https://github.com/laminas/laminas-escaper/blob/master/LICENSE.md New BSD License | ||
*/ | ||
|
||
namespace Laminas\Escaper\Exception; | ||
|
||
/** | ||
* Invalid argument exception | ||
*/ | ||
class RuntimeException extends \RuntimeException implements | ||
ExceptionInterface | ||
{ | ||
} |
14 changes: 0 additions & 14 deletions
14
system/ThirdParty/ZendEscaper/Exception/ExceptionInterface.php
This file was deleted.
Oops, something went wrong.
18 changes: 0 additions & 18 deletions
18
system/ThirdParty/ZendEscaper/Exception/InvalidArgumentException.php
This file was deleted.
Oops, something went wrong.
18 changes: 0 additions & 18 deletions
18
system/ThirdParty/ZendEscaper/Exception/RuntimeException.php
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters