Hi,
I am trying to implement INVO on my basic Phalcon app, here is my loader.php file:
<?php
$loader = new Phalcon\Loader();
// We're a registering a set of directories taken from the configuration file
$loader->registerDirs(
    [
        APP_PATH . $config->application->controllersDir,
        APP_PATH . $config->application->pluginsDir,
        APP_PATH . $config->application->libraryDir,
        APP_PATH . $config->application->modelsDir,
        APP_PATH . $config->application->formsDir,
    ]
);
$loader->register();And my config.ini file:
[database]
adapter  = Mysql
host     = localhost
username = root
password =
dbname   = invo
charset  = utf8
[application]
controllersDir = app/controllers/
modelsDir      = app/models/
viewsDir       = app/views/
pluginsDir     = app/plugins/
formsDir       = app/forms/
libraryDir     = app/library/
baseUri        = /invo/I don't get how to solve this error, any help please ?