diff --git a/components/lock.rst b/components/lock.rst index ce8c2044999..f90b27f4c8e 100644 --- a/components/lock.rst +++ b/components/lock.rst @@ -146,7 +146,6 @@ Locks are created and managed in ``Stores``, which are classes that implement :class:`Symfony\\Component\\Lock\\StoreInterface`. The component includes the following built-in store types: - ============================================ ====== ======== ======== Store Scope Blocking Expiring ============================================ ====== ======== ======== diff --git a/components/phpunit_bridge.rst b/components/phpunit_bridge.rst index 0b2539efe7d..a1d5858dd8b 100644 --- a/components/phpunit_bridge.rst +++ b/components/phpunit_bridge.rst @@ -497,7 +497,6 @@ Consider the following example:: } } - The ``FooTest::test`` method executes every single line of code of both ``Foo`` and ``Bar`` classes, but ``Bar`` is not truly tested. The ``CoverageListener`` aims to fix this behavior by adding the appropriate `@covers`_ annotation on diff --git a/configuration/micro_kernel_trait.rst b/configuration/micro_kernel_trait.rst index 83b6f785b33..9a576fdc10e 100644 --- a/configuration/micro_kernel_trait.rst +++ b/configuration/micro_kernel_trait.rst @@ -200,7 +200,6 @@ hold the kernel. Now it looks like this:: } } - .. versionadded:: 3.4 Support for annotation routing without an external bundle was added in Symfony 3.4. Prior to version 3.4, you needed to install the diff --git a/console.rst b/console.rst index 0e1d9aa91f6..0835c0e987e 100644 --- a/console.rst +++ b/console.rst @@ -184,7 +184,7 @@ as a service, you can use normal dependency injection. Imagine you have a public function __construct(UserManager $userManager) { $this->userManager = $userManager; - + parent::__construct(); } diff --git a/debug/debugging.rst b/debug/debugging.rst index 108ed2e5f8d..386c472cc10 100644 --- a/debug/debugging.rst +++ b/debug/debugging.rst @@ -83,7 +83,7 @@ that can help you visualize and find the information. ``debug:config`` Shows all configured bundles, their class and their alias. - + ``debug:form`` Displays information about form types and their options.