File: /home/petsclubcc/magento/vendor/magento/framework/Interception/ConfigInterface.php
<?php
/**
* Interception config. Tells whether plugins have been added for type.
*
* Copyright © 2016 Magento. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\Framework\Interception;
interface ConfigInterface
{
/**
* Check whether type has configured plugins
*
* @param string $type
* @return bool
*/
public function hasPlugins($type);
/**
* Initialize interception config
*
* @param array $classDefinitions
* @return void
*/
public function initialize($classDefinitions = []);
}