CommandInterface.php 478 B

123456789101112131415161718192021
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\Analytics\Model\Connector;
  7. /**
  8. * Introduces family of integration calls.
  9. * Each implementation represents call to external service.
  10. */
  11. interface CommandInterface
  12. {
  13. /**
  14. * Execute call to external service
  15. * Information about destination and arguments appears from config
  16. *
  17. * @return bool
  18. */
  19. public function execute();
  20. }