FormatterInterface.php 484 B

1234567891011121314151617181920212223
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\Framework\App\DeploymentConfig\Writer;
  7. /**
  8. * Interface \Magento\Framework\App\DeploymentConfig\Writer\FormatterInterface
  9. *
  10. */
  11. interface FormatterInterface
  12. {
  13. /**
  14. * Format deployment configuration
  15. *
  16. * @param array $data
  17. * @param array $comments
  18. * @return string
  19. */
  20. public function format($data, array $comments = []);
  21. }