Hello there,
I would like to know what is the good way to extend the Fuel and Autoloader classes. We can't follow the regular process (as documented) because these 2 particular classes are loaded before the Autoloader (and the Autoloader can't load itself, obvsiously).
For now I just hard-include them at the very top of my App boostrap, before the Core bootstrap, like this:
I'm more stucked for the Autoloader, since it's not part of the \Fuel\Core namespace and it's hard-coded in the global namespace.
Is there a better way to achieve this?
Thanks in advance for the anwser.
[edit] Forget all about Autoloader. I can just use plain PHP and spl_autoload_register...