I use the advanced application pattern.
I want to create a new directory in the root of the project and describe my structure there. Here is how it looks from me:
I'm trying to access the SuperTest class from the backend, for example.
Class connect so:
use modules\user\modules\v1\backend\models\SuperTest; As a result, I get the error: Class 'modules\user\modules\v1\backend\models\SuperTest' not found
As I understand it, the autoloader cannot load this class.
How can I make it so that I can work normally with a new directory?

