mirror of
https://github.com/rectorphp/rector.git
synced 2025-02-08 09:01:20 +01:00
a893773fb3
f2e58a222f
[Scoped] Fix downgrade rector-generator (#1461)
30 lines
680 B
PHP
30 lines
680 B
PHP
<?php
|
|
|
|
/*
|
|
* This file is part of the Symfony package.
|
|
*
|
|
* (c) Fabien Potencier <fabien@symfony.com>
|
|
*
|
|
* For the full copyright and license information, please view the LICENSE
|
|
* file that was distributed with this source code.
|
|
*/
|
|
namespace RectorPrefix20211211\Symfony\Contracts\Translation;
|
|
|
|
interface LocaleAwareInterface
|
|
{
|
|
/**
|
|
* Sets the current locale.
|
|
*
|
|
* @param string $locale The locale
|
|
*
|
|
* @throws \InvalidArgumentException If the locale contains invalid characters
|
|
*/
|
|
public function setLocale(string $locale);
|
|
/**
|
|
* Returns the current locale.
|
|
*
|
|
* @return string
|
|
*/
|
|
public function getLocale();
|
|
}
|