| Current Path : /var/www/clients/client3/web2/web/vendor/magento/framework/Translate/ |
| Current File : /var/www/clients/client3/web2/web/vendor/magento/framework/Translate/ResourceInterface.php |
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\Framework\Translate;
/**
* Returns the translation resource data.
*
* @api
* @since 100.0.2
*/
interface ResourceInterface
{
/**
* Retrieve translation array for store / locale code
*
* @param int $scope
* @param string $locale
* @return array
*/
public function getTranslationArray($scope = null, $locale = null);
}