/home/sharedstore/public_html/prestashop.sharedstore.ma/src/Core/Module
Edit: /home/sharedstore/public_html/prestashop.sharedstore.ma/src/Core/Module/ConfigReaderInterface.php (1478B)
* @copyright Since 2007 PrestaShop SA and Contributors
* @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
*/
namespace PrestaShop\PrestaShop\Core\Module;
use PrestaShop\PrestaShop\Core\Util\ArrayFinder;
interface ConfigReaderInterface
{
/**
* Read file properties
*
* @param string $name The module name
* @param string $isoCode The current iso code format fr_FR
*
* @return ArrayFinder|null
*/
public function read(string $name, string $isoCode): ?ArrayFinder;
}