Files
2026-05-27 11:44:10 -04:00

22 lines
667 B
PHP

<?php
declare(strict_types=1);
/**
* This file is part of CodeIgniter 4 framework.
*
* (c) CodeIgniter Foundation <admin@codeigniter.com>
*
* For the full copyright and license information, please view
* the LICENSE file that was distributed with this source code.
*/
// API language settings
return [
'invalidFields' => 'Invalid field requested: {0}',
'invalidIncludes' => 'Invalid include requested: {0}',
'missingInclude' => 'Missing include method for: {0}',
'transformerNotFound' => 'Transformer class \'{0}\' not found.',
'invalidTransformer' => 'Transformer class \'{0}\' must implement TransformerInterface.',
];