* @link http://www.oxidmodule.com */ namespace D3\Devhelper\Modules\Application\Model; use OxidEsales\Eshop\Application\Model\ArticleList; class d3_dev_oxorderarticle extends d3_dev_oxorderarticle_parent { /** * @return null|ArticleList */ public function getCustomerAlsoBoughtThisProducts() { $oArticle = $this->getArticle(); /** @var ArticleList $artList */ $artList = $oArticle->getCustomerAlsoBoughtThisProducts(); return $artList; } }