From 5f134c8597f2ddea431f7a36f748e7b4d0809ef7 Mon Sep 17 00:00:00 2001 From: Javier Eguiluz Date: Fri, 15 Oct 2021 16:53:00 +0200 Subject: [PATCH 1/2] Fix RST syntax of some tables --- messenger.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/messenger.rst b/messenger.rst index 18b1e5d6911..69c48ea0093 100644 --- a/messenger.rst +++ b/messenger.rst @@ -1394,7 +1394,7 @@ The Beanstalkd transport DSN may looks like this: The transport has a number of options: ================== =================================== ====================== - Option Description Default +Option Description Default ================== =================================== ====================== tube_name Name of the queue default timeout Message reservation timeout 0 (will cause the From 064341862be4eab54aa118f484fed2acb5a706a8 Mon Sep 17 00:00:00 2001 From: Fabien Salathe Date: Wed, 12 Jan 2022 12:52:41 +0100 Subject: [PATCH 2/2] Update bundle page to reflect best practices #15881 --- bundles.rst | 12 ++++++------ messenger.rst | 2 +- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/bundles.rst b/bundles.rst index ed194614c34..ec7bcb26faa 100644 --- a/bundles.rst +++ b/bundles.rst @@ -86,26 +86,26 @@ The directory structure of a bundle is meant to help to keep code consistent between all Symfony bundles. It follows a set of conventions, but is flexible to be adjusted if needed: -``Controller/`` +``src/Controller/`` Contains the controllers of the bundle (e.g. ``RandomController.php``). -``DependencyInjection/`` +``src/DependencyInjection/`` Holds certain Dependency Injection Extension classes, which may import service configuration, register compiler passes or more (this directory is not necessary). -``Resources/config/`` +``config/`` Houses configuration, including routing configuration (e.g. ``routing.yaml``). -``Resources/views/`` +``templates/`` Holds templates organized by controller name (e.g. ``Random/index.html.twig``). -``Resources/public/`` +``public/`` Contains web assets (images, stylesheets, etc) and is copied or symbolically linked into the project ``public/`` directory via the ``assets:install`` console command. -``Tests/`` +``tests/`` Holds all tests for the bundle. A bundle can be as small or large as the feature it implements. It contains diff --git a/messenger.rst b/messenger.rst index 69c48ea0093..18b1e5d6911 100644 --- a/messenger.rst +++ b/messenger.rst @@ -1394,7 +1394,7 @@ The Beanstalkd transport DSN may looks like this: The transport has a number of options: ================== =================================== ====================== -Option Description Default + Option Description Default ================== =================================== ====================== tube_name Name of the queue default timeout Message reservation timeout 0 (will cause the