问题:
最近在安装一个新的插件,编译发现如下错误:
解决办法:
打开文件 vendor/magento/framework/Interception/PluginListGenerator.php
更新
$cacheId = implode('|', $this->scopePriorityScheme) . "|" . $this->cacheId;
为
$cacheId = implode('-', $this->scopePriorityScheme) . "-" . $this->cacheId;
这样重新进行编译就可以了
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。