Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Tag classes as final or internal based on their usages #469

Merged
merged 1 commit into from
Oct 24, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

* Add support for Symfony 7
* Remove support for Symfony 4
* Mark classes as internal when relevant
* Add support for env placeholders in the `level` option of handlers

## 3.8.0 (2022-05-10)
Expand Down
2 changes: 2 additions & 0 deletions DependencyInjection/Compiler/AddProcessorsPass.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@
* Registers processors in Monolog loggers or handlers.
*
* @author Christophe Coevoet <stof@notk.org>
*
* @internalsince 3.9.0
*/
class AddProcessorsPass implements CompilerPassInterface
{
Expand Down
2 changes: 2 additions & 0 deletions DependencyInjection/Compiler/AddSwiftMailerTransportPass.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@
* container definitions.
*
* @author Christian Flothmann <christian.flothmann@xabbuh.de>
*
* @internalsince 3.9.0
*/
class AddSwiftMailerTransportPass implements CompilerPassInterface
{
Expand Down
2 changes: 2 additions & 0 deletions DependencyInjection/Compiler/FixEmptyLoggerPass.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,8 @@
* @author Fabien Potencier <fabien@symfony.com>
*
* @see https://github.com/Seldaek/monolog/commit/ad37b7b2d11f300cbace9f5e84f855d329519e28
*
* @internalsince 3.9.0
*/
class FixEmptyLoggerPass implements CompilerPassInterface
{
Expand Down
2 changes: 2 additions & 0 deletions DependencyInjection/Compiler/LoggerChannelPass.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@
* Replaces the default logger by another one with its own channel for tagged services.
*
* @author Christophe Coevoet <stof@notk.org>
*
* @internalsince 3.9.0
*/
class LoggerChannelPass implements CompilerPassInterface
{
Expand Down
2 changes: 2 additions & 0 deletions DependencyInjection/Configuration.php
Original file line number Diff line number Diff line change
Expand Up @@ -370,6 +370,8 @@
*
* @author Jordi Boggiano <j.boggiano@seld.be>
* @author Christophe Coevoet <stof@notk.org>
*
* @finalsince 3.9.0
*/
class Configuration implements ConfigurationInterface
{
Expand Down
2 changes: 2 additions & 0 deletions DependencyInjection/MonologExtension.php
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,8 @@
*
* @author Jordi Boggiano <j.boggiano@seld.be>
* @author Christophe Coevoet <stof@notk.org>
*
* @finalsince 3.9.0
*/
class MonologExtension extends Extension
{
Expand Down
2 changes: 2 additions & 0 deletions MonologBundle.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,8 @@

/**
* @author Jordi Boggiano <j.boggiano@seld.be>
*
* @finalsince 3.9.0
*/
class MonologBundle extends Bundle
{
Expand Down