Skip to content

Commit

Permalink
Clarify which classes are under BC-guarantees
Browse files Browse the repository at this point in the history
Signed-off-by: Luís Cobucci <[email protected]>
  • Loading branch information
lcobucci committed Nov 10, 2024
1 parent 3f5a497 commit 2ffdcc7
Show file tree
Hide file tree
Showing 9 changed files with 14 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/Compiler.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
use function is_array;
use function is_string;

/** @internal */
final readonly class Compiler

Check failure on line 22 in src/Compiler.php

View workflow job for this annotation

GitHub Actions / Backwards compatibility check

Lcobucci\DependencyInjection\Compiler was marked "@internal"
{
private const DEFAULT_PASS_CONFIG = [null, PassConfig::TYPE_BEFORE_OPTIMIZATION, 0];
Expand Down
2 changes: 2 additions & 0 deletions src/Compiler/ParameterBag.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@
* Injects parameters into the container
*
* You should use this to define dynamic parameters using PHP
*
* @internal
*/
final class ParameterBag implements CompilerPassInterface

Check failure on line 16 in src/Compiler/ParameterBag.php

View workflow job for this annotation

GitHub Actions / Backwards compatibility check

Lcobucci\DependencyInjection\Compiler\ParameterBag was marked "@internal"
{
Expand Down
1 change: 1 addition & 0 deletions src/Config/ContainerConfiguration.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@

use const DIRECTORY_SEPARATOR;

/** @internal */
final class ContainerConfiguration

Check failure on line 24 in src/Config/ContainerConfiguration.php

View workflow job for this annotation

GitHub Actions / Backwards compatibility check

Lcobucci\DependencyInjection\Config\ContainerConfiguration was marked "@internal"
{
public const CLASS_NAME = 'AppContainer';
Expand Down
1 change: 1 addition & 0 deletions src/Generator.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
use function assert;
use function is_a;

/** @internal */
abstract readonly class Generator

Check failure on line 17 in src/Generator.php

View workflow job for this annotation

GitHub Actions / Backwards compatibility check

Lcobucci\DependencyInjection\Generator was marked "@internal"
{
private Compiler $compiler;
Expand Down
2 changes: 2 additions & 0 deletions src/Generators/Delegating.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@

/**
* The dependency injection generator that allows XML, YAML and PHP files
*
* @internal
*/
final readonly class Delegating extends Generator
{
Expand Down
2 changes: 2 additions & 0 deletions src/Generators/Php.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@

/**
* The dependency injection generator for PHP files
*
* @internal
*/
final readonly class Php extends Generator
{
Expand Down
2 changes: 2 additions & 0 deletions src/Generators/Xml.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@

/**
* The dependency injection generator for XML files
*
* @internal
*/
final readonly class Xml extends Generator
{
Expand Down
2 changes: 2 additions & 0 deletions src/Generators/Yaml.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@

/**
* The dependency injection generator for YAML files
*
* @internal
*/
final readonly class Yaml extends Generator
{
Expand Down
1 change: 1 addition & 0 deletions src/Testing/MakeServicesPublic.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
use Symfony\Component\DependencyInjection\Compiler\CompilerPassInterface;
use Symfony\Component\DependencyInjection\ContainerBuilder;

/** @internal */
final class MakeServicesPublic implements CompilerPassInterface

Check failure on line 10 in src/Testing/MakeServicesPublic.php

View workflow job for this annotation

GitHub Actions / Backwards compatibility check

Lcobucci\DependencyInjection\Testing\MakeServicesPublic was marked "@internal"
{
/**
Expand Down

0 comments on commit 2ffdcc7

Please sign in to comment.