Skip to content

Commit cf4d945

Browse files
committed
feature #32698 [WebProfilerBundle] mark all classes as internal (Tobion)
This PR was merged into the 4.4 branch. Discussion ---------- [WebProfilerBundle] mark all classes as internal | Q | A | ------------- | --- | Branch? | 4.4 | Bug fix? | no | New feature? | no <!-- please update src/**/CHANGELOG.md files --> | BC breaks? | no <!-- see https://symfony.com/bc --> | Deprecations? | no <!-- please update UPGRADE-*.md and src/**/CHANGELOG.md files --> | Tests pass? | yes <!-- please add some, will be required by reviewers --> | Fixed tickets | | License | MIT | Doc PR | those classes are not meant as extension point Commits ------- 35b0d57 [WebProfilerBundle] mark all classes as internal
2 parents f492ba5 + 35b0d57 commit cf4d945

File tree

6 files changed

+10
-0
lines changed

6 files changed

+10
-0
lines changed

src/Symfony/Bundle/WebProfilerBundle/CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ CHANGELOG
88
* Deprecated the `ExceptionController::templateExists()` method
99
* Deprecated the `TemplateManager::templateExists()` method
1010
* Deprecated the `ExceptionController` in favor of `ExceptionErrorController`
11+
* Marked all classes of the WebProfilerBundle as internal
1112

1213
4.3.0
1314
-----

src/Symfony/Bundle/WebProfilerBundle/Controller/ExceptionController.php

+1
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@
2828
* @author Fabien Potencier <fabien@symfony.com>
2929
*
3030
* @deprecated since Symfony 4.4, use the ExceptionErrorController instead.
31+
* @internal since Symfony 4.4
3132
*/
3233
class ExceptionController
3334
{

src/Symfony/Bundle/WebProfilerBundle/Controller/ProfilerController.php

+2
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,8 @@
2424

2525
/**
2626
* @author Fabien Potencier <fabien@symfony.com>
27+
*
28+
* @internal since Symfony 4.4
2729
*/
2830
class ProfilerController
2931
{

src/Symfony/Bundle/WebProfilerBundle/Controller/RouterController.php

+2
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,8 @@
2626
* RouterController.
2727
*
2828
* @author Fabien Potencier <fabien@symfony.com>
29+
*
30+
* @internal since Symfony 4.4
2931
*/
3032
class RouterController
3133
{

src/Symfony/Bundle/WebProfilerBundle/Profiler/TemplateManager.php

+2
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,8 @@
2424
*
2525
* @author Fabien Potencier <fabien@symfony.com>
2626
* @author Artur Wielogórski <wodor@wodor.net>
27+
*
28+
* @internal since Symfony 4.4
2729
*/
2830
class TemplateManager
2931
{

src/Symfony/Bundle/WebProfilerBundle/Twig/WebProfilerExtension.php

+2
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,8 @@
2222
* Twig extension for the profiler.
2323
*
2424
* @author Fabien Potencier <fabien@symfony.com>
25+
*
26+
* @internal since Symfony 4.4
2527
*/
2628
class WebProfilerExtension extends ProfilerExtension
2729
{

0 commit comments

Comments
 (0)