Skip to content

Commit

Permalink
[Intl] Added "internal" tag to all classes under Symfony\Component\In…
Browse files Browse the repository at this point in the history
…tl\ResourceBundle

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.
  • Loading branch information
webmozart committed Sep 9, 2014
1 parent 91fb103 commit 7fd5e8b
Show file tree
Hide file tree
Showing 30 changed files with 60 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/Symfony/Component/Intl/ResourceBundle/AbstractBundle.php
Expand Up @@ -17,6 +17,8 @@
* Base class for {@link ResourceBundleInterface} implementations.
*
* @author Bernhard Schussek <bschussek@gmail.com>
*
* @internal
*/
abstract class AbstractBundle implements ResourceBundleInterface
{
Expand Down
Expand Up @@ -17,6 +17,8 @@
* Compiles .txt resource bundles to binary .res files.
*
* @author Bernhard Schussek <bschussek@gmail.com>
*
* @internal
*/
class BundleCompiler implements BundleCompilerInterface
{
Expand Down
Expand Up @@ -15,6 +15,8 @@
* Compiles a resource bundle.
*
* @author Bernhard Schussek <bschussek@gmail.com>
*
* @internal
*/
interface BundleCompilerInterface
{
Expand Down
2 changes: 2 additions & 0 deletions src/Symfony/Component/Intl/ResourceBundle/CurrencyBundle.php
Expand Up @@ -15,6 +15,8 @@
* Default implementation of {@link CurrencyBundleInterface}.
*
* @author Bernhard Schussek <bschussek@gmail.com>
*
* @internal
*/
class CurrencyBundle extends AbstractBundle implements CurrencyBundleInterface
{
Expand Down
2 changes: 2 additions & 0 deletions src/Symfony/Component/Intl/ResourceBundle/LanguageBundle.php
Expand Up @@ -15,6 +15,8 @@
* Default implementation of {@link LanguageBundleInterface}.
*
* @author Bernhard Schussek <bschussek@gmail.com>
*
* @internal
*/
class LanguageBundle extends AbstractBundle implements LanguageBundleInterface
{
Expand Down
2 changes: 2 additions & 0 deletions src/Symfony/Component/Intl/ResourceBundle/LocaleBundle.php
Expand Up @@ -15,6 +15,8 @@
* Default implementation of {@link LocaleBundleInterface}.
*
* @author Bernhard Schussek <bschussek@gmail.com>
*
* @internal
*/
class LocaleBundle extends AbstractBundle implements LocaleBundleInterface
{
Expand Down
Expand Up @@ -15,6 +15,8 @@
* Base class for {@link BundleReaderInterface} implementations.
*
* @author Bernhard Schussek <bschussek@gmail.com>
*
* @internal
*/
abstract class AbstractBundleReader implements BundleReaderInterface
{
Expand Down
Expand Up @@ -18,6 +18,8 @@
* Reads binary .res resource bundles.
*
* @author Bernhard Schussek <bschussek@gmail.com>
*
* @internal
*/
class BinaryBundleReader extends AbstractBundleReader implements BundleReaderInterface
{
Expand Down
Expand Up @@ -15,6 +15,8 @@

/**
* @author Bernhard Schussek <bschussek@gmail.com>
*
* @internal
*/
class BufferedBundleReader implements BundleReaderInterface
{
Expand Down
Expand Up @@ -15,6 +15,8 @@
* Reads resource bundle files.
*
* @author Bernhard Schussek <bschussek@gmail.com>
*
* @internal
*/
interface BundleReaderInterface
{
Expand Down
Expand Up @@ -18,6 +18,8 @@
* Reads .php resource bundles.
*
* @author Bernhard Schussek <bschussek@gmail.com>
*
* @internal
*/
class PhpBundleReader extends AbstractBundleReader implements BundleReaderInterface
{
Expand Down
Expand Up @@ -19,6 +19,8 @@
* @author Bernhard Schussek <bschussek@gmail.com>
*
* @see StructuredResourceBundleBundleReaderInterface
*
* @internal
*/
class StructuredBundleReader implements StructuredBundleReaderInterface
{
Expand Down
Expand Up @@ -15,6 +15,8 @@
* Reads individual entries of a resource file.
*
* @author Bernhard Schussek <bschussek@gmail.com>
*
* @internal
*/
interface StructuredBundleReaderInterface extends BundleReaderInterface
{
Expand Down
2 changes: 2 additions & 0 deletions src/Symfony/Component/Intl/ResourceBundle/RegionBundle.php
Expand Up @@ -15,6 +15,8 @@
* Default implementation of {@link RegionBundleInterface}.
*
* @author Bernhard Schussek <bschussek@gmail.com>
*
* @internal
*/
class RegionBundle extends AbstractBundle implements RegionBundleInterface
{
Expand Down
Expand Up @@ -19,6 +19,8 @@
* Compiles a number of resource bundles based on predefined compilation rules.
*
* @author Bernhard Schussek <bschussek@gmail.com>
*
* @internal
*/
class BundleTransformer
{
Expand Down
Expand Up @@ -18,6 +18,8 @@
* Default implementation of {@link CompilationContextInterface}.
*
* @author Bernhard Schussek <bschussek@gmail.com>
*
* @internal
*/
class CompilationContext implements CompilationContextInterface
{
Expand Down
Expand Up @@ -15,6 +15,8 @@
* Stores contextual information for resource bundle compilation.
*
* @author Bernhard Schussek <bschussek@gmail.com>
*
* @internal
*/
interface CompilationContextInterface
{
Expand Down
Expand Up @@ -21,6 +21,8 @@
* The rule for compiling the currency bundle.
*
* @author Bernhard Schussek <bschussek@gmail.com>
*
* @internal
*/
class CurrencyBundleTransformationRule implements TransformationRuleInterface
{
Expand Down
Expand Up @@ -20,6 +20,8 @@
* The rule for compiling the language bundle.
*
* @author Bernhard Schussek <bschussek@gmail.com>
*
* @internal
*/
class LanguageBundleTransformationRule implements TransformationRuleInterface
{
Expand Down
Expand Up @@ -21,6 +21,8 @@
* The rule for compiling the locale bundle.
*
* @author Bernhard Schussek <bschussek@gmail.com>
*
* @internal
*/
class LocaleBundleTransformationRule implements TransformationRuleInterface
{
Expand Down
Expand Up @@ -20,6 +20,8 @@
* The rule for compiling the region bundle.
*
* @author Bernhard Schussek <bschussek@gmail.com>
*
* @internal
*/
class RegionBundleTransformationRule implements TransformationRuleInterface
{
Expand Down
Expand Up @@ -18,6 +18,8 @@
* Contains instruction for compiling a resource bundle.
*
* @author Bernhard Schussek <bschussek@gmail.com>
*
* @internal
*/
interface TransformationRuleInterface
{
Expand Down
Expand Up @@ -15,6 +15,8 @@

/**
* @author Bernhard Schussek <bschussek@gmail.com>
*
* @internal
*/
class StubbingContext implements StubbingContextInterface
{
Expand Down
Expand Up @@ -13,6 +13,8 @@

/**
* @author Bernhard Schussek <bschussek@gmail.com>
*
* @internal
*/
interface StubbingContextInterface
{
Expand Down
Expand Up @@ -20,6 +20,8 @@
* This class can be removed once that bug is fixed.
*
* @author Bernhard Schussek <bschussek@gmail.com>
*
* @internal
*/
class ArrayAccessibleResourceBundle implements \ArrayAccess, \IteratorAggregate, \Countable
{
Expand Down
Expand Up @@ -13,6 +13,8 @@

/**
* @author Bernhard Schussek <bschussek@gmail.com>
*
* @internal
*/
class RecursiveArrayAccess
{
Expand Down
2 changes: 2 additions & 0 deletions src/Symfony/Component/Intl/ResourceBundle/Util/RingBuffer.php
Expand Up @@ -21,6 +21,8 @@
* then the second and so on.
*
* @author Bernhard Schussek <bschussek@gmail.com>
*
* @internal
*/
class RingBuffer implements \ArrayAccess
{
Expand Down
Expand Up @@ -15,6 +15,8 @@
* Writes resource bundle files.
*
* @author Bernhard Schussek <bschussek@gmail.com>
*
* @internal
*/
interface BundleWriterInterface
{
Expand Down
Expand Up @@ -15,6 +15,8 @@
* Writes .php resource bundles.
*
* @author Bernhard Schussek <bschussek@gmail.com>
*
* @internal
*/
class PhpBundleWriter implements BundleWriterInterface
{
Expand Down
Expand Up @@ -20,6 +20,8 @@
* @author Bernhard Schussek <bschussek@gmail.com>
*
* @see http://source.icu-project.org/repos/icu/icuhtml/trunk/design/bnf_rb.txt
*
* @internal
*/
class TextBundleWriter implements BundleWriterInterface
{
Expand Down

0 comments on commit 7fd5e8b

Please sign in to comment.