Your IP : 216.73.216.43


Current Path : /home/rtorresani/www/vendor/magento/module-developer/Model/XmlCatalog/Format/
Upload File :
Current File : //home/rtorresani/www/vendor/magento/module-developer/Model/XmlCatalog/Format/FormatInterface.php

<?php
/**
 * Copyright © Magento, Inc. All rights reserved.
 * See COPYING.txt for license details.
 */

namespace Magento\Developer\Model\XmlCatalog\Format;

/**
 * Interface FormatInterface is implemented by custom URN catalog generators
 *
 * @api
 * @since 100.0.2
 */
interface FormatInterface
{
    /**
     * Generate Catalog of URNs
     *
     * @param string[] $dictionary
     * @param string $configFile absolute path to the file to write the catalog
     * @return void
     */
    public function generateCatalog(array $dictionary, $configFile);
}