1234567891011121314151617181920212223242526272829 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Framework\Interception\ObjectManager;
- /**
- * Interface \Magento\Framework\Interception\ObjectManager\ConfigInterface
- *
- */
- interface ConfigInterface extends \Magento\Framework\ObjectManager\ConfigInterface
- {
- /**
- * Set Interception config
- *
- * @param \Magento\Framework\Interception\ConfigInterface $interceptionConfig
- * @return void
- */
- public function setInterceptionConfig(\Magento\Framework\Interception\ConfigInterface $interceptionConfig);
- /**
- * Retrieve instance type without interception processing
- *
- * @param string $instanceName
- * @return string
- */
- public function getOriginalInstanceType($instanceName);
- }
|