InterceptedInterface.php 427 B

123456789101112131415161718192021222324
  1. <?php
  2. /**
  3. *
  4. * Copyright © Magento, Inc. All rights reserved.
  5. * See COPYING.txt for license details.
  6. */
  7. namespace Magento\Framework\Interception\Fixture;
  8. /**
  9. * @codingStandardsIgnoreStart
  10. */
  11. interface InterceptedInterface
  12. {
  13. /**
  14. * @SuppressWarnings(PHPMD.ShortMethodName)
  15. */
  16. public function C($param1);
  17. /**
  18. * @SuppressWarnings(PHPMD.ShortMethodName)
  19. */
  20. public function F($param1);
  21. }