Skip to content

Commit

Permalink
Little code optimisations
Browse files Browse the repository at this point in the history
  • Loading branch information
N3Cr0N committed Apr 12, 2019
1 parent f67b538 commit 9fd283d
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions application/core/MY_Controller.php
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ public function __construct()
}

// Backend controller
require_once(APPPATH . 'core/Backend_Controller.php');
require_once(APPPATH.'core/Backend_Controller.php');

// Frontend controller
require_once(APPPATH . 'core/Frontend_Controller.php');
require_once(APPPATH.'core/Frontend_Controller.php');
4 changes: 2 additions & 2 deletions application/core/MY_Loader.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@
*
*/

/* load the MX_Loader class */
require APPPATH . "third_party/MX/Loader.php";
// load the MX_Loader class
require APPPATH."third_party/MX/Loader.php";

class MY_Loader extends MX_Loader
{
Expand Down
4 changes: 2 additions & 2 deletions application/core/MY_Router.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@
*
*/

/* load the MX_Router class */
require APPPATH . "third_party/MX/Router.php";
// load the MX_Router class
require APPPATH."third_party/MX/Router.php";


class MY_Router extends MX_Router
Expand Down

0 comments on commit 9fd283d

Please sign in to comment.