| Current Path : /home/rtorresani/www/vendor/magento/framework/Profiler/Driver/Standard/ |
| Current File : //home/rtorresani/www/vendor/magento/framework/Profiler/Driver/Standard/OutputInterface.php |
<?php
/**
* Interface for output class of standard profiler driver.
*
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
declare(strict_types=1);
namespace Magento\Framework\Profiler\Driver\Standard;
/**
* Interface \Magento\Framework\Profiler\Driver\Standard\OutputInterface
*
* @api
*/
interface OutputInterface
{
/**
* Display profiling results in appropriate format
*
* @param Stat $stat
* @return void
*/
public function display(Stat $stat);
}