We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9b25030 commit becd97cCopy full SHA for becd97c
app/code/Magento/Sitemap/Model/CmsPageSitemapItemResolver.php
@@ -65,7 +65,6 @@ public function __construct(
65
public function getItems($storeId)
66
{
67
$collection = $this->cmsPageFactory->create()->getCollection($storeId);
68
- var_dump($collection);
69
$items = array_map(function($item) use ($storeId) {
70
return $this->itemFactory->create([
71
'url' => $item->getUrl(),
@@ -76,8 +75,6 @@ public function getItems($storeId)
76
75
]);
77
}, $collection);
78
79
- var_dump($items);
80
-
81
return $items;
82
}
83
0 commit comments