Use a global style scheme

Controllers: underscores
Models: CamelCase
This commit is contained in:
Karsten Heiken
2011-04-22 03:44:23 +02:00
parent cf00dcf39b
commit 06c96140dc
5 changed files with 8 additions and 8 deletions

View File

@@ -102,7 +102,7 @@ class Project extends CI_Model {
*
* @param array $project_id The project to get the configuration from.
*/
public function get_configurations($project_id) {
public function getConfigurations($project_id) {
$query = $this->db->get_where('configurations', array('project_id' => $project_id));
$configurations = $query->result_array();