Current Path : /home/dev2.destoffenstraat.com/vendor-1/magento/framework/Translate/ |
Current File : /home/dev2.destoffenstraat.com/vendor-1/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); }