Your IP : 216.73.216.81


Current Path : /srv/web/sites/trentinoplant.it/httpdocs/vendor1/magento/framework/Translate/
Upload File :
Current File : /srv/web/sites/trentinoplant.it/httpdocs/vendor1/magento/framework/Translate/AdapterInterface.php

<?php
/**
 * Copyright © Magento, Inc. All rights reserved.
 * See COPYING.txt for license details.
 */

namespace Magento\Framework\Translate;

use Laminas\Validator\Translator\TranslatorInterface;

/**
 * Magento translate adapter interface
 *
 * @api
 * @since 100.0.2
 */
interface AdapterInterface extends TranslatorInterface
{
    /**
     * Translate string
     *
     * @param string|array $messageId
     * @param string $textDomain
     * @param string|null $locale
     * @return string
     */
    public function translate($messageId, $textDomain = 'default', $locale = null);

    // @codingStandardsIgnoreStart
    /**
     * Translate string
     *
     * @return string
     * @SuppressWarnings(PHPMD.ShortMethodName)
     */
    public function __();
    // @codingStandardsIgnoreEnd
}