Сообщество IT-специалистов
Ответы на любые вопросы об IT
Профессиональное развитие в IT
Удаленная работа для IT-специалистов
public function __call($method,$args){ if (!in_array($method,$this->publicChainingMethods)) return null; call_user_func_array ( array($this,$method.'_real') , $args ); return $this; }