| Current Path : /var/www/html/setup/src/Magento/Setup/Module/Dependency/Report/ |
| Current File : /var/www/html/setup/src/Magento/Setup/Module/Dependency/Report/BuilderInterface.php |
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\Setup\Module\Dependency\Report;
/**
* Builder Interface
*/
interface BuilderInterface
{
/**
* Build a report
*
* @param array $options
* @return void
*/
public function build(array $options);
}