$controllerNamespace public property
The namespace that controller classes are in. This namespace will be used to load controller classes by prepending it to the controller class name.
If not set, it will use the controllers
sub-namespace under the namespace of this module. For example, if the namespace of this module is foo\bar
, then the default controller namespace would be foo\bar\controllers
.
See also the guide section on autoloading to learn more about defining namespaces and how classes are loaded.
public string $controllerNamespace = null
Please login to continue.