Your IP : 216.73.216.208


Current Path : /home/m/a/g/maglabs/it/lib/internal/Magento/Framework/Profiler/Driver/Standard/
Upload File :
Current File : /home/m/a/g/maglabs/it/lib/internal/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);
}

?>