I am building a system in ZF2, in a controller
I have many different forms, but in the same module I have many controller
with many forms, and to make everything more ordered I want to create a subdirectory in the folder Forms
called Specials
and leave all my special forms there, leaving my directory structure in the following way
module/
Account/
config/
Controller/
Form/
Specials/
Model/
view/
In the controller I add line use Account\Forms\Specials\SpecialForm1
, then I call it $special_form1 = new SpecialForm1("form_special1);
but that gives me the error not found
Someone knows how I can do this please.