Shopware 5.6 更新属性模型已损坏
Shopware 5.6 Update Attribute model is broken
我已将一个 shopware 项目从 5.5 更新到 5.6.8。
在结果中,为属性 table 's_articles_attributes' 生成的学说模型被破坏。
在class的最后生成了这两个函数
public function get()
{
return $this->;
}
public function set($)
{
$this-> = $;
return $this;
}
这会导致以下错误:
PHP Parse error: syntax error, unexpected ';', expecting identifier
(T_STRING) or variable (T_VARIABLE) or '{' or '$' in
var/cache/production/doctrine/attributes/Article.php
on line 699
我的PHP版本是7.2.33
作为数据库 我使用MariaDB 10.3.33
由于某些原因,通常包含 class Shopware\Models\Article\Detail 的 PHP-File 是空的,因此生成器无法建立正确的关联。
重新下载资源后一切顺利
我已将一个 shopware 项目从 5.5 更新到 5.6.8。 在结果中,为属性 table 's_articles_attributes' 生成的学说模型被破坏。
在class的最后生成了这两个函数
public function get()
{
return $this->;
}
public function set($)
{
$this-> = $;
return $this;
}
这会导致以下错误:
PHP Parse error: syntax error, unexpected ';', expecting identifier (T_STRING) or variable (T_VARIABLE) or '{' or '$' in var/cache/production/doctrine/attributes/Article.php on line 699
我的PHP版本是7.2.33
作为数据库 我使用MariaDB 10.3.33
由于某些原因,通常包含 class Shopware\Models\Article\Detail 的 PHP-File 是空的,因此生成器无法建立正确的关联。 重新下载资源后一切顺利