I am having troubles with the casing of variables in Propel
Current code that works:
$this->_variables = array('Alias' => 'aliasOne', 'LocationId' => 1);
$model = new Client();
$model->fromArray($this->_variables);
$model->save();
However due to the format of my API output, I would prefer the code to be
$array = array('alias' => 'aliasOne', 'location_id' => 1);
$model = new Client();
$model->fromArray($array);
$model->save();
How is it possible?