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
-------

35b0d57692 [WebProfilerBundle] mark all classes as internal
This commit is contained in:
Fabien Potencier 2019-07-24 12:28:00 +02:00
commit cf4d94519c
6 changed files with 10 additions and 0 deletions

View File

@ -8,6 +8,7 @@ CHANGELOG
* Deprecated the `ExceptionController::templateExists()` method
* Deprecated the `TemplateManager::templateExists()` method
* Deprecated the `ExceptionController` in favor of `ExceptionErrorController`
* Marked all classes of the WebProfilerBundle as internal
4.3.0
-----

View File

@ -28,6 +28,7 @@ use Twig\Loader\ExistsLoaderInterface;
* @author Fabien Potencier <fabien@symfony.com>
*
* @deprecated since Symfony 4.4, use the ExceptionErrorController instead.
* @internal since Symfony 4.4
*/
class ExceptionController
{

View File

@ -24,6 +24,8 @@ use Twig\Environment;
/**
* @author Fabien Potencier <fabien@symfony.com>
*
* @internal since Symfony 4.4
*/
class ProfilerController
{

View File

@ -26,6 +26,8 @@ use Twig\Environment;
* RouterController.
*
* @author Fabien Potencier <fabien@symfony.com>
*
* @internal since Symfony 4.4
*/
class RouterController
{

View File

@ -24,6 +24,8 @@ use Twig\Loader\SourceContextLoaderInterface;
*
* @author Fabien Potencier <fabien@symfony.com>
* @author Artur Wielogórski <wodor@wodor.net>
*
* @internal since Symfony 4.4
*/
class TemplateManager
{

View File

@ -22,6 +22,8 @@ use Twig\TwigFunction;
* Twig extension for the profiler.
*
* @author Fabien Potencier <fabien@symfony.com>
*
* @internal since Symfony 4.4
*/
class WebProfilerExtension extends ProfilerExtension
{