123456789101112131415161718192021222324 |
- <?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);
- }
|