Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Develop #815

Merged
merged 9 commits into from
Aug 1, 2016
Prev Previous commit
Next Next commit
Added public keyword to constructor.
  • Loading branch information
Slaveek committed Dec 29, 2015
commit 81adb243b96ada41d5e5042de9a7d15645f97124
2 changes: 1 addition & 1 deletion application/core/Controller.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ class Controller
* Construct the (base) controller. This happens when a real controller is constructed, like in
* the constructor of IndexController when it says: parent::__construct();
*/
function __construct()
public function __construct()
{
// always initialize a session
Session::init();
Expand Down