Initial import

This commit is contained in:
2026-07-17 11:48:07 -04:00
commit 2ecc1c84b8
1742 changed files with 425324 additions and 0 deletions

View File

@ -0,0 +1,22 @@
<?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.
*/
namespace CodeIgniter\Exceptions;
/**
* Exception thrown if a function is called in the wrong way, or the function
* does not exist.
*/
class BadFunctionCallException extends \BadFunctionCallException implements ExceptionInterface
{
}