| Current Path : /srv/web/sites/trentinoplant.it/httpdocs/vendor1/magento/framework/Translate/ |
| Current File : /srv/web/sites/trentinoplant.it/httpdocs/vendor1/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);
}