Skip to content

Commit bffe39a

Browse files
committed
Merge branch '2.7' into 2.8
Conflicts: src/Symfony/Component/Console/Application.php src/Symfony/Component/Console/Command/Command.php src/Symfony/Component/Console/Formatter/OutputFormatter.php src/Symfony/Component/Console/Formatter/OutputFormatterStyle.php src/Symfony/Component/Console/Input/Input.php src/Symfony/Component/Console/Input/InputArgument.php src/Symfony/Component/Console/Input/InputDefinition.php src/Symfony/Component/Console/Input/InputOption.php src/Symfony/Component/Console/Output/OutputInterface.php src/Symfony/Component/Console/Output/StreamOutput.php src/Symfony/Component/CssSelector/CssSelector.php src/Symfony/Component/DependencyInjection/Container.php src/Symfony/Component/DependencyInjection/ContainerBuilder.php src/Symfony/Component/DependencyInjection/ContainerInterface.php src/Symfony/Component/DependencyInjection/Definition.php src/Symfony/Component/DependencyInjection/Scope.php src/Symfony/Component/DependencyInjection/ScopeInterface.php src/Symfony/Component/Validator/Constraints/Currency.php src/Symfony/Component/Validator/Constraints/CurrencyValidator.php
2 parents a919e7d + ffcccba commit bffe39a

18 files changed

+0
-144
lines changed

DataCollectorTranslator.php

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -66,8 +66,6 @@ public function transChoice($id, $number, array $parameters = array(), $domain =
6666

6767
/**
6868
* {@inheritdoc}
69-
*
70-
* @api
7169
*/
7270
public function setLocale($locale)
7371
{
@@ -76,8 +74,6 @@ public function setLocale($locale)
7674

7775
/**
7876
* {@inheritdoc}
79-
*
80-
* @api
8177
*/
8278
public function getLocale()
8379
{

Exception/ExceptionInterface.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,6 @@
1515
* Exception interface for all exceptions thrown by the component.
1616
*
1717
* @author Fabien Potencier <[email protected]>
18-
*
19-
* @api
2018
*/
2119
interface ExceptionInterface
2220
{

Exception/InvalidResourceException.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,6 @@
1515
* Thrown when a resource cannot be loaded.
1616
*
1717
* @author Fabien Potencier <[email protected]>
18-
*
19-
* @api
2018
*/
2119
class InvalidResourceException extends \InvalidArgumentException implements ExceptionInterface
2220
{

Exception/NotFoundResourceException.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,6 @@
1515
* Thrown when a resource does not exist.
1616
*
1717
* @author Fabien Potencier <[email protected]>
18-
*
19-
* @api
2018
*/
2119
class NotFoundResourceException extends \InvalidArgumentException implements ExceptionInterface
2220
{

IdentityTranslator.php

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,6 @@
1515
* IdentityTranslator does not translate anything.
1616
*
1717
* @author Fabien Potencier <[email protected]>
18-
*
19-
* @api
2018
*/
2119
class IdentityTranslator implements TranslatorInterface
2220
{
@@ -27,8 +25,6 @@ class IdentityTranslator implements TranslatorInterface
2725
* Constructor.
2826
*
2927
* @param MessageSelector|null $selector The message selector for pluralization
30-
*
31-
* @api
3228
*/
3329
public function __construct(MessageSelector $selector = null)
3430
{
@@ -37,8 +33,6 @@ public function __construct(MessageSelector $selector = null)
3733

3834
/**
3935
* {@inheritdoc}
40-
*
41-
* @api
4236
*/
4337
public function setLocale($locale)
4438
{
@@ -47,8 +41,6 @@ public function setLocale($locale)
4741

4842
/**
4943
* {@inheritdoc}
50-
*
51-
* @api
5244
*/
5345
public function getLocale()
5446
{
@@ -57,8 +49,6 @@ public function getLocale()
5749

5850
/**
5951
* {@inheritdoc}
60-
*
61-
* @api
6252
*/
6353
public function trans($id, array $parameters = array(), $domain = null, $locale = null)
6454
{
@@ -67,8 +57,6 @@ public function trans($id, array $parameters = array(), $domain = null, $locale
6757

6858
/**
6959
* {@inheritdoc}
70-
*
71-
* @api
7260
*/
7361
public function transChoice($id, $number, array $parameters = array(), $domain = null, $locale = null)
7462
{

Loader/ArrayLoader.php

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,15 +17,11 @@
1717
* ArrayLoader loads translations from a PHP array.
1818
*
1919
* @author Fabien Potencier <[email protected]>
20-
*
21-
* @api
2220
*/
2321
class ArrayLoader implements LoaderInterface
2422
{
2523
/**
2624
* {@inheritdoc}
27-
*
28-
* @api
2925
*/
3026
public function load($resource, $locale, $domain = 'messages')
3127
{

Loader/CsvFileLoader.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,6 @@
1717
* CsvFileLoader loads translations from CSV files.
1818
*
1919
* @author Saša Stamenković <[email protected]>
20-
*
21-
* @api
2220
*/
2321
class CsvFileLoader extends FileLoader
2422
{

Loader/LoaderInterface.php

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,6 @@
1919
* LoaderInterface is the interface implemented by all translation loaders.
2020
*
2121
* @author Fabien Potencier <[email protected]>
22-
*
23-
* @api
2422
*/
2523
interface LoaderInterface
2624
{
@@ -33,8 +31,6 @@ interface LoaderInterface
3331
*
3432
* @return MessageCatalogue A MessageCatalogue instance
3533
*
36-
* @api
37-
*
3834
* @throws NotFoundResourceException when the resource cannot be found
3935
* @throws InvalidResourceException when the resource cannot be loaded
4036
*/

Loader/PhpFileLoader.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,6 @@
1515
* PhpFileLoader loads translations from PHP files returning an array of translations.
1616
*
1717
* @author Fabien Potencier <[email protected]>
18-
*
19-
* @api
2018
*/
2119
class PhpFileLoader extends FileLoader
2220
{

Loader/QtFileLoader.php

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,15 +21,11 @@
2121
* QtFileLoader loads translations from QT Translations XML files.
2222
*
2323
* @author Benjamin Eberlei <[email protected]>
24-
*
25-
* @api
2624
*/
2725
class QtFileLoader implements LoaderInterface
2826
{
2927
/**
3028
* {@inheritdoc}
31-
*
32-
* @api
3329
*/
3430
public function load($resource, $locale, $domain = 'messages')
3531
{

0 commit comments

Comments
 (0)