Subfolders for controllers and models #17
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Uncaught DomainException: Failed to find the controller:
mirzaev\huesos\controllers\api/acquirings/robokassa
in/var/www/huesos/vendor/mirzaev/minimal/mirzaev/minimal/system/core.php:186
Wrong:
->write('/api/robokassa/result', new route('api/acquirings/robokassa', 'result'), 'GET')
Correct:
->write('/api/robokassa/result', new route('api\acquirings\robokassa', 'result'), 'GET')
Do i need to add the conversion of
/
to\
?Or leave it as is for better performance?