OutputInterface.php 500 B

1234567891011121314151617181920212223
  1. <?php
  2. /**
  3. * Interface for output class of standard profiler driver.
  4. *
  5. * Copyright © Magento, Inc. All rights reserved.
  6. * See COPYING.txt for license details.
  7. */
  8. namespace Magento\Framework\Profiler\Driver\Standard;
  9. /**
  10. * Interface \Magento\Framework\Profiler\Driver\Standard\OutputInterface
  11. *
  12. */
  13. interface OutputInterface
  14. {
  15. /**
  16. * Display profiling results in appropriate format
  17. *
  18. * @param Stat $stat
  19. * @return void
  20. */
  21. public function display(Stat $stat);
  22. }