我正在参考该理论文档进行教学。在此过程中出现了问题。
php vendor / bin / doctrine orm:schema-tool:create
结果:
dir=$(cd "${0%[/\\]*}" > /dev/null; cd "../doctrine/orm/bin" && pwd)
if [ -d /proc/cygdrive ] && [[ $(which php) == $(readlink -n /proc/cygdrive)/* ]]; then
# We are in Cgywin using Windows php, so the path must be translated
dir=$(cygpath -m "$dir");
fi
"${dir}/doctrine" "$@" doctrine
我需要帮助!谢谢大家
答案 0 :(得分:0)
尝试从头部移除“ php”。
./vendor/bin/doctrine orm:schema-tool:create
答案 1 :(得分:0)
您要查找的命令是*/doctrine-module <command>
php vendor/bin/doctrine-module orm:schema-tool:create
vendor/bin/doctrine
是something else。