我有一个机器人,我通过这个命令运行它:
@Entity
@Table(name="access_record")
public class AccessRecord {
在这个机器人中,我有一个函数执行:
robot:test:google
在此功能中,我尝试运行命令google custom search api,我需要调用它:
protected function execute(InputInterface $input, OutputInterface $output)
{
echo "test";
}
但我没有找到如何在我的函数中运行此命令。