mirror of
https://github.com/ad-aures/castopod.git
synced 2026-03-13 09:31:04 +08:00
15 lines
200 B
PHP
15 lines
200 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Config;
|
|
|
|
use CodeIgniter\Config\ForeignCharacters as BaseForeignCharacters;
|
|
|
|
/**
|
|
* @immutable
|
|
*/
|
|
class ForeignCharacters extends BaseForeignCharacters
|
|
{
|
|
}
|