$base->test('string1') ->chek('string')->hello;
class Base {
public function test($string){
// Что то делаем.
return $this;
}
public function chek($string){
// Что то делаем.
return $this;
}
public function hello(){
// Что то делаем.
return $this;
}
}
$base
->test('string1')
->chek('string')
->hello();
echo function()[1];
echo function()[1]->hello;