Config.php 495 B

123456789101112131415161718192021
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\TestFramework\ObjectManager;
  7. class Config extends \Magento\Framework\Interception\ObjectManager\Config\Developer
  8. {
  9. /**
  10. * Clean configuration
  11. */
  12. public function clean()
  13. {
  14. $this->_preferences = [];
  15. $this->_virtualTypes = [];
  16. $this->_arguments = [];
  17. $this->_nonShared = [];
  18. $this->_mergedArguments = [];
  19. }
  20. }