Skip to content

Commit 756093a

Browse files
committed
Tag classes as final or internal based on their usages
1 parent 110a839 commit 756093a

File tree

8 files changed

+15
-0
lines changed

8 files changed

+15
-0
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
* Add support for Symfony 7
44
* Remove support for Symfony 4
5+
* Mark classes as internal when relevant
56
* Add support for env placeholders in the `level` option of handlers
67

78
## 3.8.0 (2022-05-10)

DependencyInjection/Compiler/AddProcessorsPass.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@
2020
* Registers processors in Monolog loggers or handlers.
2121
*
2222
* @author Christophe Coevoet <stof@notk.org>
23+
*
24+
* @internalsince 3.9.0
2325
*/
2426
class AddProcessorsPass implements CompilerPassInterface
2527
{

DependencyInjection/Compiler/AddSwiftMailerTransportPass.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@
2020
* container definitions.
2121
*
2222
* @author Christian Flothmann <christian.flothmann@xabbuh.de>
23+
*
24+
* @internalsince 3.9.0
2325
*/
2426
class AddSwiftMailerTransportPass implements CompilerPassInterface
2527
{

DependencyInjection/Compiler/FixEmptyLoggerPass.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,8 @@
2828
* @author Fabien Potencier <fabien@symfony.com>
2929
*
3030
* @see https://github.com/Seldaek/monolog/commit/ad37b7b2d11f300cbace9f5e84f855d329519e28
31+
*
32+
* @internalsince 3.9.0
3133
*/
3234
class FixEmptyLoggerPass implements CompilerPassInterface
3335
{

DependencyInjection/Compiler/LoggerChannelPass.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,8 @@
2323
* Replaces the default logger by another one with its own channel for tagged services.
2424
*
2525
* @author Christophe Coevoet <stof@notk.org>
26+
*
27+
* @internalsince 3.9.0
2628
*/
2729
class LoggerChannelPass implements CompilerPassInterface
2830
{

DependencyInjection/Configuration.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -370,6 +370,8 @@
370370
*
371371
* @author Jordi Boggiano <j.boggiano@seld.be>
372372
* @author Christophe Coevoet <stof@notk.org>
373+
*
374+
* @finalsince 3.9.0
373375
*/
374376
class Configuration implements ConfigurationInterface
375377
{

DependencyInjection/MonologExtension.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,8 @@
4040
*
4141
* @author Jordi Boggiano <j.boggiano@seld.be>
4242
* @author Christophe Coevoet <stof@notk.org>
43+
*
44+
* @finalsince 3.9.0
4345
*/
4446
class MonologExtension extends Extension
4547
{

MonologBundle.php

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

2525
/**
2626
* @author Jordi Boggiano <j.boggiano@seld.be>
27+
*
28+
* @finalsince 3.9.0
2729
*/
2830
class MonologBundle extends Bundle
2931
{

0 commit comments

Comments
 (0)