Replies: 1 comment
-
Please try registering the modules using an associative array like the example in the docs: // Register the installed modules
$application->registerModules(
[
'frontend' => [
'className' => 'Multiple\Frontend\Module',
'path' => '../apps/frontend/Module.php',
],
'backend' => [
'className' => 'Multiple\Backend\Module',
'path' => '../apps/backend/Module.php',
]
]
); |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hi,
I am trying to use the Module in a new phalcon app but getting this error don't understand why :(
here is the code :
Beta Was this translation helpful? Give feedback.
All reactions