Update to Drupal 8.0-dev-2015-11-17. Commits through da81cd220, Tue Nov 17 15:53:49 2015 +0000, Issue #2617224 by Wim Leers: Move around/fix some documentation.
This commit is contained in:
parent
4afb23bbd3
commit
7784f4c23d
929 changed files with 19798 additions and 5304 deletions
|
@ -15,8 +15,6 @@ namespace Symfony\Component\Translation;
|
|||
* TranslatorInterface.
|
||||
*
|
||||
* @author Fabien Potencier <fabien@symfony.com>
|
||||
*
|
||||
* @api
|
||||
*/
|
||||
interface TranslatorInterface
|
||||
{
|
||||
|
@ -31,8 +29,6 @@ interface TranslatorInterface
|
|||
* @throws \InvalidArgumentException If the locale contains invalid characters
|
||||
*
|
||||
* @return string The translated string
|
||||
*
|
||||
* @api
|
||||
*/
|
||||
public function trans($id, array $parameters = array(), $domain = null, $locale = null);
|
||||
|
||||
|
@ -48,8 +44,6 @@ interface TranslatorInterface
|
|||
* @throws \InvalidArgumentException If the locale contains invalid characters
|
||||
*
|
||||
* @return string The translated string
|
||||
*
|
||||
* @api
|
||||
*/
|
||||
public function transChoice($id, $number, array $parameters = array(), $domain = null, $locale = null);
|
||||
|
||||
|
@ -59,8 +53,6 @@ interface TranslatorInterface
|
|||
* @param string $locale The locale
|
||||
*
|
||||
* @throws \InvalidArgumentException If the locale contains invalid characters
|
||||
*
|
||||
* @api
|
||||
*/
|
||||
public function setLocale($locale);
|
||||
|
||||
|
@ -68,8 +60,6 @@ interface TranslatorInterface
|
|||
* Returns the current locale.
|
||||
*
|
||||
* @return string The locale
|
||||
*
|
||||
* @api
|
||||
*/
|
||||
public function getLocale();
|
||||
}
|
||||
|
|
Reference in a new issue