I have class MY_Controller extends CI_Controller and common logic for big profile section, so I\'va tried to create class Profile extends MY_Controller
class MY_Controller extends CI_Controller
class Profile extends MY_Controller
It is possible with Codeigniter 3. Just including the parent file is enough.
require_once(APPPATH."controllers/MyParentController.php"); class MyChildController extends MyParentController { ...