/** * Returns an array of latest product entities * * @param integer $categoryId Optionally can be filtered by category id * @return array */ public function getLatest($categoryId = null) { $count = $this->config->getShowCaseCount(); return $this->productManager->fetchLatestPublished($count, $categoryId); }