[WebProfilerBundle] mark all classes as internal

those classes are not meant as extension point
This commit is contained in:
Tobias Schultze 2019-07-24 08:18:47 +02:00
parent 4045a134df
commit 35b0d57692
6 changed files with 11 additions and 0 deletions

View File

@ -7,6 +7,7 @@ CHANGELOG
* Added button to clear the ajax request tab
* Deprecated the `ExceptionController::templateExists()` method
* Deprecated the `TemplateManager::templateExists()` method
* Marked all classes of the WebProfilerBundle as internal
4.3.0
-----

View File

@ -24,6 +24,8 @@ use Twig\Loader\ExistsLoaderInterface;
* ExceptionController.
*
* @author Fabien Potencier <fabien@symfony.com>
*
* @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
{