Skip to content
Code-Schnipsel Gruppen Projekte

fix: uncaught TypeError: Products::getProduct(): Argument #1 ($pid) must be of type int

Zusammengeführt Henning Leutz schlägt vor, dev in next zu mergen.
1 Datei
+ 3
3
Änderungen vergleichen
  • Nebeneinander
  • In der Reihe
@@ -241,15 +241,15 @@ class Article implements ArticleInterface
/**
* Return the Article ID
*
* @return string|int
* @return int
*/
public function getId()
{
if (isset($this->attributes['id'])) {
return $this->attributes['id'];
return (int)$this->attributes['id'];
}
return '';
return 0;
}
/**