Skip to content

Commit ee8ac67

Browse files
committed
remove api tags from code
1 parent 7560d04 commit ee8ac67

16 files changed

+0
-142
lines changed

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 $selector The message selector for pluralization
30-
*
31-
* @api
3228
*/
3329
public function __construct(MessageSelector $selector)
3430
{
@@ -37,8 +33,6 @@ public function __construct(MessageSelector $selector)
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 = 'messages', $locale = null)
6454
{
@@ -67,8 +57,6 @@ public function trans($id, array $parameters = array(), $domain = 'messages', $l
6757

6858
/**
6959
* {@inheritdoc}
70-
*
71-
* @api
7260
*/
7361
public function transChoice($id, $number, array $parameters = array(), $domain = 'messages', $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 & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,6 @@
1919
* CsvFileLoader loads translations from CSV files.
2020
*
2121
* @author Saša Stamenković <[email protected]>
22-
*
23-
* @api
2422
*/
2523
class CsvFileLoader extends ArrayLoader
2624
{
@@ -30,8 +28,6 @@ class CsvFileLoader extends ArrayLoader
3028

3129
/**
3230
* {@inheritdoc}
33-
*
34-
* @api
3531
*/
3632
public function load($resource, $locale, $domain = 'messages')
3733
{

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 & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,15 +19,11 @@
1919
* PhpFileLoader loads translations from PHP files returning an array of translations.
2020
*
2121
* @author Fabien Potencier <[email protected]>
22-
*
23-
* @api
2422
*/
2523
class PhpFileLoader extends ArrayLoader
2624
{
2725
/**
2826
* {@inheritdoc}
29-
*
30-
* @api
3127
*/
3228
public function load($resource, $locale, $domain = 'messages')
3329
{

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
{

Loader/XliffFileLoader.php

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

0 commit comments

Comments
 (0)