ConfigInterface.php 806 B

1234567891011121314151617181920212223242526272829
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\Framework\Interception\ObjectManager;
  7. /**
  8. * Interface \Magento\Framework\Interception\ObjectManager\ConfigInterface
  9. *
  10. */
  11. interface ConfigInterface extends \Magento\Framework\ObjectManager\ConfigInterface
  12. {
  13. /**
  14. * Set Interception config
  15. *
  16. * @param \Magento\Framework\Interception\ConfigInterface $interceptionConfig
  17. * @return void
  18. */
  19. public function setInterceptionConfig(\Magento\Framework\Interception\ConfigInterface $interceptionConfig);
  20. /**
  21. * Retrieve instance type without interception processing
  22. *
  23. * @param string $instanceName
  24. * @return string
  25. */
  26. public function getOriginalInstanceType($instanceName);
  27. }