InterceptedParentInterface.php 332 B

1234567891011121314151617
  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. interface InterceptedParentInterface
  9. {
  10. /**
  11. * @SuppressWarnings(PHPMD.ShortMethodName)
  12. * @codingStandardsIgnoreStart
  13. */
  14. public function A($param1);
  15. }