2020-05-27 18:46:16 +02:00
|
|
|
<?php
|
|
|
|
|
2021-06-08 09:52:11 +00:00
|
|
|
declare(strict_types=1);
|
|
|
|
|
2020-05-27 18:46:16 +02:00
|
|
|
/**
|
2021-05-19 16:35:13 +00:00
|
|
|
* The goal of this file is to allow developers a location where they can overwrite core procedural functions and
|
|
|
|
* replace them with their own. This file is loaded during the bootstrap process and is called during the frameworks
|
2020-05-27 18:46:16 +02:00
|
|
|
* execution.
|
|
|
|
*
|
2021-05-19 16:35:13 +00:00
|
|
|
* This can be looked at as a `master helper` file that is loaded early on, and may also contain additional functions
|
2020-05-27 18:46:16 +02:00
|
|
|
* that you'd like to use throughout your entire application
|
|
|
|
*
|
|
|
|
* @link: https://codeigniter4.github.io/CodeIgniter4/
|
|
|
|
*/
|