Archived
1
0
Fork 0

remove app/config/config.php

This commit is contained in:
Henrik Hautakoski 2018-06-18 20:11:50 +02:00
parent d490e928d9
commit 3ebd19a8cf

View file

@ -1,15 +0,0 @@
<?php
use Phalcon\Config\Adapter\Yaml as Config;
$config = new Config(APP_PATH . '/app/config/conf.app.yml');
try {
$local = new Config(APP_PATH . '/app/config/conf.local.yml');
$config->merge($local);
} catch(Phalcon\Config\Exception $e) {
// Sometime went wrong.
}
return $config;