File: /home/petsclubcc/magento/vendor/magento/module-ui/DataProvider/Modifier/PoolInterface.php
<?php
/**
* Copyright © 2016 Magento. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\Ui\DataProvider\Modifier;
interface PoolInterface
{
/**
* Retrieve modifiers
*
* @return array
*/
public function getModifiers();
/**
* Retrieve modifiers instantiated
*
* @return ModifierInterface[]
* @throws \Magento\Framework\Exception\LocalizedException
*/
public function getModifiersInstances();
}