Skip to content

Commit

Permalink
Removed unused properties
Browse files Browse the repository at this point in the history
  • Loading branch information
maxalmonte14 committed Oct 30, 2018
1 parent 5181674 commit b272c4e
Showing 1 changed file with 0 additions and 17 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -44,30 +44,13 @@ class Storage
protected $_byPagesIterator;

/**
* @var CustomerCollectionFactory
*/
private $customerCollectionFactory;

/**
* Customer collection.
*
* @var \Magento\Customer\Model\ResourceModel\Customer\Collection
*/
private $_customerCollection;

/**
* @param CustomerCollectionFactory $collectionFactory
* @param CollectionByPagesIteratorFactory $colIteratorFactory
* @param array $data
*/
public function __construct(
CustomerCollectionFactory $collectionFactory,
CollectionByPagesIteratorFactory $colIteratorFactory,
array $data = []
) {
$this->_customerCollection = isset(
$data['customer_collection']
) ? $data['customer_collection'] : $collectionFactory->create();
$this->_pageSize = isset($data['page_size']) ? $data['page_size'] : 0;
$this->_byPagesIterator = isset(
$data['collection_by_pages_iterator']
Expand Down

0 comments on commit b272c4e

Please sign in to comment.