DomainOptionsInterface.php
Namespace
PhpTuf\ComposerStager\API\Translation\ServiceFile
-
vendor/
php-tuf/ composer-stager/ src/ API/ Translation/ Service/ DomainOptionsInterface.php
View source
<?php
declare (strict_types=1);
namespace PhpTuf\ComposerStager\API\Translation\Service;
/**
* Provides domain values for the translation system.
*
* @package Translation
*
* @api This interface is subject to our backward compatibility promise and may be safely depended upon.
*/
interface DomainOptionsInterface {
/** Gets the default domain. */
public function default() : string;
/** Gets the domain for exceptions. */
public function exceptions() : string;
}
Interfaces
Title | Deprecated | Summary |
---|---|---|
DomainOptionsInterface | Provides domain values for the translation system. |