-
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Clarify which classes are under BC-guarantees
Signed-off-by: Luís Cobucci <[email protected]>
- Loading branch information
Showing
9 changed files
with
14 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 GitHub Actions / Backwards compatibility check
|
||
{ | ||
private const DEFAULT_PASS_CONFIG = [null, PassConfig::TYPE_BEFORE_OPTIMIZATION, 0]; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 GitHub Actions / Backwards compatibility check
|
||
{ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,6 +20,7 @@ | |
|
||
use const DIRECTORY_SEPARATOR; | ||
|
||
/** @internal */ | ||
final class ContainerConfiguration | ||
Check failure on line 24 in src/Config/ContainerConfiguration.php GitHub Actions / Backwards compatibility check
|
||
{ | ||
public const CLASS_NAME = 'AppContainer'; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 GitHub Actions / Backwards compatibility check
|
||
{ | ||
private Compiler $compiler; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 GitHub Actions / Backwards compatibility check
|
||
{ | ||
/** | ||
|