Hello everyone,
I am trying to use the Phalcon Autoloader and include my custom Namespace I registered my namespace wiht "$loader->registerNamespaces()" and when dumping the information afterwards it seems like it worked: array(1) { ["woh"]=> array(1) { [0]=> string(8) "app/src/" } }
But when I try to use new woh\AccessRouteControl(); I just get Fatal error: Uncaught Error: Class 'woh\AccessRouteControl' not found
the Class is located in /app/src/AccessRouteControl.php
What am I doing wrong? Best Regards