Допустим, у меня есть 3 класса и методы в нем;
file1.php
class A
{
public function insert()
{
/* some code to do something with DB */
}
}
file2.php
требуется file1.php
class B extends A
{
public function sample()
{
/* doing something random */
}
}
file3.php
требуется file2.php
class C extends B
{
public function something()
{
$this->insert(); //In here I want to use it like $this->A->insert(); OR $A->insert();
}
}