Magento 2 – Replacement for Varien_data_collection

magento2varien

What is the replacement for Varien_Data_Collection in magento 2? I know that Varien_Object has been replaced with \Magento\Framework\DataObject.

Best Answer

replacement for Varien_Data_Collection in magento 2?

You can find the data collection class in Magento 2 by your root\vendor\magento\framework\Data\Collection.php

The class Implements

\IteratorAggregate, \Countable, ArrayInterface, CollectionDataSourceInterface

Hope this helps.

Related Topic