StateHandlerInterface.php 392 B

123456789101112131415161718192021
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\Mtf\App\State;
  7. /**
  8. * Interface StateHandlerInterface
  9. */
  10. interface StateHandlerInterface
  11. {
  12. /**
  13. * Perform app state change before run
  14. *
  15. * @param AbstractState $state
  16. * @return mixed
  17. */
  18. public function execute(AbstractState $state);
  19. }