Skip to content

Commit 9a97d87

Browse files
committed
chore: add missing EscaperInterface to the AutoloadConfig
1 parent db79418 commit 9a97d87

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

system/Config/AutoloadConfig.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
namespace CodeIgniter\Config;
1515

1616
use Laminas\Escaper\Escaper;
17+
use Laminas\Escaper\EscaperInterface;
1718
use Laminas\Escaper\Exception\ExceptionInterface;
1819
use Laminas\Escaper\Exception\InvalidArgumentException as EscaperInvalidArgumentException;
1920
use Laminas\Escaper\Exception\RuntimeException;
@@ -119,6 +120,7 @@ class AutoloadConfig
119120
ExceptionInterface::class => SYSTEMPATH . 'ThirdParty/Escaper/Exception/ExceptionInterface.php',
120121
EscaperInvalidArgumentException::class => SYSTEMPATH . 'ThirdParty/Escaper/Exception/InvalidArgumentException.php',
121122
RuntimeException::class => SYSTEMPATH . 'ThirdParty/Escaper/Exception/RuntimeException.php',
123+
EscaperInterface::class => SYSTEMPATH . 'ThirdParty/Escaper/EscaperInterface.php',
122124
Escaper::class => SYSTEMPATH . 'ThirdParty/Escaper/Escaper.php',
123125
];
124126

0 commit comments

Comments
 (0)