10000 minor #11891 [Intl] Added "internal" tag to all classes under Symfony… · symfony/symfony@f5b4b11 · GitHub
[go: up one dir, main page]

Skip to content

Commit f5b4b11

Browse files
committed
minor #11891 [Intl] Added "internal" tag to all classes under Symfony\Component\Intl\ResourceBundle (webmozart)
This PR was merged into the 2.3 branch. Discussion ---------- [Intl] Added "internal" tag to all classes under Symfony\Component\Intl\ResourceBundle | Q | A | ------------- | --- | Bug fix? | no | New feature? | no | BC breaks? | yes? | Deprecations? | no | Tests pass? | yes | Fixed tickets | - | License | MIT | Doc PR | - We didn't have this tag yet when this component was first written. The code in that namespace is only used for resource bundle generation and was never meant for public use. We need to include in the update notes that users should check for usage of these classes. Commits ------- 7fd5e8b [Intl] Added "internal" tag to all classes under Symfony\Component\Intl\ResourceBundle
2 parents 91fb103 + 7fd5e8b commit f5b4b11

30 files changed

+60
-0
lines changed

src/Symfony/Component/Intl/ResourceBundle/AbstractBundle.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@
1717
* Base class for {@link ResourceBundleInterface} implementations.
1818
*
1919
* @author Bernhard Schussek <bschussek@gmail.com>
20+
*
21+
* @internal
2022
*/
2123
abstract class AbstractBundle implements ResourceBundleInterface
2224
{

src/Symfony/Component/Intl/ResourceBundle/Compiler/BundleCompiler.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@
1717
* Compiles .txt resource bundles to binary .res files.
1818
*
1919
* @author Bernhard Schussek <bschussek@gmail.com>
20+
*
21+
* @internal
2022
*/
2123
class BundleCompiler implements BundleCompilerInterface
2224
{

src/Symfony/Component/Intl/ResourceBundle/Compiler/BundleCompilerInterface.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@
1515
* Compiles a resource bundle.
1616
*
1717
* @author Bernhard Schussek <bschussek@gmail.com>
18+
*
19+
* @internal
1820
*/
1921
interface BundleCompilerInterface
2022
{

src/Symfony/Component/Intl/ResourceBundle/CurrencyBundle.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@
1515
* Default implementation of {@link CurrencyBundleInterface}.
1616
*
1717
* @author Bernhard Schussek <bschussek@gmail.com>
18+
*
19+
* @internal
1820
*/
1921
class CurrencyBundle extends AbstractBundle implements CurrencyBundleInterface
2022
{

src/Symfony/Component/Intl/ResourceBundle/LanguageBundle.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@
1515
* Default implementation of {@link LanguageBundleInterface}.
1616
*
1717
* @author Bernhard Schussek <bschussek@gmail.com>
18+
*
19+
* @internal
1820
*/
1921
class LanguageBundle extends AbstractBundle implements LanguageBundleInterface
2022
{

src/Symfony/Component/Intl/ResourceBundle/LocaleBundle.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@
1515
* Default implementation of {@link LocaleBundleInterface}.
1616
*
1717
* @author Bernhard Schussek <bschussek@gmail.com>
18+
*
19+
* @internal
1820
*/
1921
class LocaleBundle extends AbstractBundle implements LocaleBundleInterface
2022
{

src/Symfony/Component/Intl/ResourceBundle/Reader/AbstractBundleReader.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@
1515
* Base class for {@link BundleReaderInterface} implementations.
1616
*
1717
* @author Bernhard Schussek <bschussek@gmail.com>
18+
*
19+
* @internal
1820
*/
1921
abstract class AbstractBundleReader implements BundleReaderInterface
2022
{

src/Symfony/Component/Intl/ResourceBundle/Reader/BinaryBundleReader.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,8 @@
1818
* Reads binary .res resource bundles.
1919
*
2020
* @author Bernhard Schussek <bschussek@gmail.com>
21+
*
22+
* @internal
2123
*/
2224
class BinaryBundleReader extends AbstractBundleReader implements BundleReaderInterface
2325
{

src/Symfony/Component/Intl/ResourceBundle/Reader/BufferedBundleReader.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@
1515

1616
/**
1717
* @author Bernhard Schussek <bschussek@gmail.com>
18+
*
19+
* @internal
1820
*/
1921
class BufferedBundleReader implements BundleReaderInterface
2022
{

src/Symfony/Component/Intl/ResourceBundle/Reader/BundleReaderInterface.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@
1515
* Reads resource bundle files.
1616
*
1717
* @author Bernhard Schussek <bschussek@gmail.com>
18+
*
19+
* @internal
1820
*/
1921
interface BundleReaderInterface
2022
{

0 commit comments

Comments
 (0)
0