File: /home/petsclubcc/magento/vendor/magento/module-eav/Model/ResourceModel/Entity/Type/Collection.php
<?php
/**
* Copyright © 2016 Magento. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\Eav\Model\ResourceModel\Entity\Type;
/**
* Eav Resource Entity Type Collection Model
*
* @author Magento Core Team <core@magentocommerce.com>
*/
class Collection extends \Magento\Framework\Model\ResourceModel\Db\Collection\AbstractCollection
{
/**
* Resource initialization
*
* @return void
* @codeCoverageIgnore
*/
protected function _construct()
{
$this->_init('Magento\Eav\Model\Entity\Type', 'Magento\Eav\Model\ResourceModel\Entity\Type');
}
}