TranslatableInterface.php
Same filename in this branch
Namespace
PhpTuf\ComposerStager\API\Translation\ValueFile
-
vendor/
php-tuf/ composer-stager/ src/ API/ Translation/ Value/ TranslatableInterface.php
View source
<?php
declare (strict_types=1);
namespace PhpTuf\ComposerStager\API\Translation\Value;
use PhpTuf\ComposerStager\API\Translation\Service\TranslatorInterface;
use Stringable;
/**
* Handles a translatable message.
*
* This interface is modeled after the Symfony Translation component. However,
* there is no guarantee of functional equivalence. Do not depend on undocumented
* behavior.
*
* The behavior when cast to string is technically unspecified--it's left to
* implementations--and should not be depended upon, as a rule. The default is
* to perform placeholder substitution without attempting actual translation.
*
* @see \PhpTuf\ComposerStager\API\Translation\Service\TranslatorInterface
*
* @package Translation
*
* @api This interface is subject to our backward compatibility promise and may be safely depended upon.
*/
interface TranslatableInterface extends Stringable {
/** Translates the message. */
public function trans(?TranslatorInterface $translator = null, ?string $locale = null) : string;
}
Interfaces
Title | Deprecated | Summary |
---|---|---|
TranslatableInterface | Handles a translatable message. |