Comment.php 525 B

1234567891011121314151617181920212223242526
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\Framework\View\TemplateEngine\Xhtml\Compiler;
  7. use Magento\Framework\DataObject;
  8. /**
  9. * Class Comment
  10. */
  11. class Comment implements CommentInterface
  12. {
  13. /**
  14. * Compiles the Comment node
  15. *
  16. * @param \DOMComment $node
  17. * @param DataObject $processedObject
  18. * @return void
  19. */
  20. public function compile(\DOMComment $node, DataObject $processedObject)
  21. {
  22. //
  23. }
  24. }