In vendor/composer/autoload_real.php in symfony project the function getLoader is called from autoload.php
In this function, I have :
spl_autoload_register(array('ComposerAutoloaderInit374429f4ab4935127e2d36a0613c8d3a', 'loadClassLoader'), true, true);
The spl_autoload_register register two autoloader "ComposerAutoloaderInit374429f4ab4935127e2d36a0613c8d3a" and "loadClassLoader"
The function "loadClassLoader" exist but I cann't found the "ComposerAutoloaderInit374429f4ab4935127e2d36a0613c8d3a" function.
My question is :
There is "ComposerAutoloaderInit374429f4ab4935127e2d36a0613c8d3a" a autoloader function or the nameclass?
If it is an autoloder function, where is in the class?
Thanks in advance.