thinkphp升级后报错Declaration of think\app\Url::build() must be compatible with think\route\Url::build():
将源码中的thinkphp升级后,发现了错误:Declaration of think\app\Url::build() must be compatible with think\route\Url::build(): string
出现这个错误的原因是,你通过命令“composer update topthink/framework”只升级了框架,没有更新多应用扩展模块。
只需要composer运行下面代码更新多应用扩展模块到最新版后即可解决:
更新完成后,项目运行正常。