mirror of
https://github.com/elyby/chrly.git
synced 2025-01-03 18:51:49 +05:30
13 lines
172 B
PHP
13 lines
172 B
PHP
<?php
|
|
/**
|
|
* @var \Phalcon\Config $config
|
|
*/
|
|
|
|
$loader = new \Phalcon\Loader();
|
|
|
|
$loader->registerDirs(array(
|
|
$config->application->modelsDir
|
|
));
|
|
|
|
$loader->register();
|