CodeIgniter Forums
using app/Config/App.php in CodeIgniter 4 - Printable Version

+- CodeIgniter Forums (https://forum.codeigniter.com)
+-- Forum: Using CodeIgniter (https://forum.codeigniter.com/forumdisplay.php?fid=5)
+--- Forum: General Help (https://forum.codeigniter.com/forumdisplay.php?fid=24)
+--- Thread: using app/Config/App.php in CodeIgniter 4 (/showthread.php?tid=92917)



using app/Config/App.php in CodeIgniter 4 - sam547 - 05-16-2025

Hello folks,
Does anyone know that if I put some codes in app/Config/App.php
PHP Code:
public function __construct()
    {
 
parent::__construct();
 
$services = new Services();
 
$services->loadServices();
 
    
does this get called at every request or when apache is restarted ?

Thanks