共计 245 个字符,预计需要花费 1 分钟才能阅读完成。
问题:
最近在装置一个新的插件,编译发现如下谬误:
解决办法:
关上文件 vendor/magento/framework/Interception/PluginListGenerator.php
更新
$cacheId = implode('|', $this->scopePriorityScheme) . "|" . $this->cacheId;
为
$cacheId = implode('-', $this->scopePriorityScheme) . "-" . $this->cacheId;
这样从新进行编译就能够了
正文完