ObserverInterface.php 409 B

1234567891011121314151617181920212223
  1. <?php
  2. /**
  3. * Observer interface
  4. *
  5. * Copyright © Magento, Inc. All rights reserved.
  6. * See COPYING.txt for license details.
  7. */
  8. namespace Magento\Framework\Event;
  9. /**
  10. * Interface \Magento\Framework\Event\ObserverInterface
  11. *
  12. * @api
  13. * @since 100.0.2
  14. */
  15. interface ObserverInterface
  16. {
  17. /**
  18. * @param Observer $observer
  19. * @return void
  20. */
  21. public function execute(Observer $observer);
  22. }