ObserverInterface.php 487 B

12345678910111213141516171819202122
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\Framework\View\Element\UiComponent;
  7. use Magento\Framework\View\Element\UiComponentInterface;
  8. /**
  9. * Interface ObserverInterface
  10. */
  11. interface ObserverInterface
  12. {
  13. /**
  14. * Update component according to $component
  15. *
  16. * @param UiComponentInterface $component
  17. * @return void
  18. */
  19. public function update(UiComponentInterface $component);
  20. }