CodeIgniter Forums
Drivers : Can a driver child access to siblings methods? - Printable Version

+- CodeIgniter Forums (https://forum.codeigniter.com)
+-- Forum: Development (https://forum.codeigniter.com/forumdisplay.php?fid=6)
+--- Forum: Issues (https://forum.codeigniter.com/forumdisplay.php?fid=19)
+--- Thread: Drivers : Can a driver child access to siblings methods? (/showthread.php?tid=69250)



Drivers : Can a driver child access to siblings methods? - bkader - 10-26-2017

Greetings and thanks for your awesome work. I have an issue with CodeIgniter drivers! Let's suppose I have a driver named App and inside drivers folder I have App_child_one and App_child_two
Code:
App_child_one extends CI_Driver { ...} has method_one() {}

and
Code:
App_child_two extends CI_Driver { ...} has method_two() {}

How can I access App_child_two::method_two() from App_child_one  knowing that I have tried:
Code:
$this->CI->app->child_two->method_two()
 but I get this error:
Code:
Undefined property: CI::$app

Thanks in advance.

EDITED

I could access using:

PHP Code:
$this->_parent->driver 
But the class comes empty like it has no methods at all.