| Current Path : /home/rtorresani/www/setup/src/Magento/Setup/Module/I18n/Dictionary/Loader/ |
| Current File : //home/rtorresani/www/setup/src/Magento/Setup/Module/I18n/Dictionary/Loader/FileInterface.php |
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\Setup\Module\I18n\Dictionary\Loader;
/**
* Dictionary loader interface
*/
interface FileInterface
{
/**
* Load dictionary
*
* @param string $file
* @return \Magento\Setup\Module\I18n\Dictionary
* @throws \InvalidArgumentException
*/
public function load($file);
}