123456789101112131415161718192021222324252627282930313233 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Signifyd\Model\SignifydGateway\Debugger;
- use Exception;
- /**
- * This debugger ignores any information.
- * Optimal production environment.
- */
- class BlackHole implements DebuggerInterface
- {
- /**
- * {@inheritdoc}
- * @SuppressWarnings(PHPMD.UnusedFormalParameter)
- */
- public function success($requestUrl, $requestData, $responseStatus, $responseBody)
- {
- // ignore
- }
- /**
- * {@inheritdoc}
- * @SuppressWarnings(PHPMD.UnusedFormalParameter)
- */
- public function failure($requestUrl, $requestData, Exception $exception)
- {
- // ignore
- }
- }
|