Skip to content

Commit

Permalink
Fix caps for model name + Add comment
Browse files Browse the repository at this point in the history
  • Loading branch information
pH-7 committed Apr 3, 2022
1 parent dddeb5c commit 6ede0df
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion app/controllers/Kik.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,11 @@ class Kik extends BaseController
{
public function __construct()
{
$this->loadModel('kik');
/**
* Load the Kik model,
* so we can use it later in this class with `modelFunction`
*/
$this->loadModel('Kik');
}

public function index()
Expand Down

0 comments on commit 6ede0df

Please sign in to comment.