Fix config mapping for BaseCommand

This commit is contained in:
Timothy Warren 2017-02-10 16:12:02 -05:00
parent 0b04c22b58
commit fb1af97bae
1 changed files with 3 additions and 2 deletions

View File

@ -66,8 +66,9 @@ class BaseCommand extends Command {
protected function setupContainer()
{
$APP_DIR = realpath(__DIR__ . '/../../app');
$APPCONF_DIR = realpath("{$APP_DIR}/appConf/");
$CONF_DIR = realpath("{$APP_DIR}/config/");
require_once $CONF_DIR . '/base_config.php'; // $base_config
require_once $APPCONF_DIR . '/base_config.php'; // $base_config
$config = loadToml($CONF_DIR);
$config_array = array_merge($base_config, $config);
@ -108,7 +109,7 @@ class BaseCommand extends Command {
// Models
$container->set('kitsu-model', function($container) {
$listItem = new Kitsu\istItem();
$listItem = new Kitsu\ListItem();
$listItem->setContainer($container);
$model = new Kitsu\Model($listItem);
$model->setContainer($container);