ArgumentInterface.php 337 B

1234567891011121314151617
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\Framework\View\Element\Block;
  7. /**
  8. * Block argument interface.
  9. * All objects that are injected to block arguments should implement this interface.
  10. *
  11. * @api
  12. * @since 101.0.0
  13. */
  14. interface ArgumentInterface
  15. {
  16. }