public function getArticleListingCover($articleId,
$forceMainImage = false
) { trigger_error(sprintf('%s:%s is deprecated since Shopware 5.6 and will be removed with 5.7. Use the sArticles::sGetArticlePictures instead.', __CLASS__, __METHOD__
), E_USER_DEPRECATED
);
return $this->
sGetArticlePictures($articleId, true, 0, null, false, false,
$forceMainImage);
} /**
* Get all pictures from a certain product
*
* @param int $sArticleID
* @param bool $onlyCover
* @param int $pictureSize | unused variable
* @param string $ordernumber
* @param bool $allImages | unused variable
* @param bool $realtime | unused variable
* @param bool $forceMainImage | will return the main image no matter which variant restriction is set
*
* @return array
*/