Your IP : 216.73.216.244


Current Path : /home/rtorresani/www/setup/src/Magento/Setup/Module/Dependency/Report/Data/
Upload File :
Current File : //home/rtorresani/www/setup/src/Magento/Setup/Module/Dependency/Report/Data/ConfigInterface.php

<?php
/**
 * Copyright © Magento, Inc. All rights reserved.
 * See COPYING.txt for license details.
 */
namespace Magento\Setup\Module\Dependency\Report\Data;

/**
 * Config
 */
interface ConfigInterface
{
    /**
     * Get modules
     *
     * @return array
     */
    public function getModules();

    /**
     * Get total dependencies count
     *
     * @return int
     */
    public function getDependenciesCount();
}