123456789101112131415161718192021222324 |
- <?php
- /**
- *
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Framework\Interception\Fixture;
- /**
- * @codingStandardsIgnoreStart
- */
- interface InterceptedInterface
- {
- /**
- * @SuppressWarnings(PHPMD.ShortMethodName)
- */
- public function C($param1);
- /**
- * @SuppressWarnings(PHPMD.ShortMethodName)
- */
- public function F($param1);
- }
|