Skip to content

Commit 7eda66e

Browse files
committed
Use ... as placeholder
1 parent d75f86a commit 7eda66e

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

form/data_transformers.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ slightly::
112112
$builder->add(
113113
$builder
114114
->create('tags', TextType::class)
115-
->addModelTransformer(/* ... */)
115+
->addModelTransformer(...)
116116
);
117117

118118
Example #2: Transforming an Issue Number into an Issue Entity

form/validation_groups.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ this as an option when :ref:`creating forms in controllers <creating-forms-in-co
1313

1414
$form = $this->createFormBuilder($user, [
1515
'validation_groups' => ['registration'],
16-
])->add(/* ... */);
16+
])->add(...);
1717

1818
When :ref:`creating forms in classes <creating-forms-in-classes>`, add the
1919
following to the ``configureOptions()`` method::

logging/monolog_exclude_http_codes.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ logging these HTTP codes based on the MonologBundle configuration:
5454
'main' => [
5555
// ...
5656
'type' => 'fingers_crossed',
57-
'handler' => 'acme_handler', // Some handler
57+
'handler' => ...,
5858
'excluded_http_codes' => [403, 404],
5959
],
6060
],

logging/monolog_regex_based_excludes.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ configuration:
2828
main:
2929
# ...
3030
type: fingers_crossed
31-
handler: 'acme_handler' # Some handler
31+
handler: ...
3232
excluded_404s:
3333
- ^/phpmyadmin
3434
@@ -59,7 +59,7 @@ configuration:
5959
'main' => [
6060
// ...
6161
'type' => 'fingers_crossed',
62-
'handler' => 'acme_handler', // Some handler
62+
'handler' => ...,
6363
'excluded_404s' => [
6464
'^/phpmyadmin',
6565
],

messenger.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1219,7 +1219,7 @@ this globally (or for each transport) to a service that implements
12191219
],
12201220
'transports' => [
12211221
'async_priority_normal' => [
1222-
'dsn' => '', // Some dsn
1222+
'dsn' => ...,
12231223
'serializer' => 'messenger.transport.symfony_serializer',
12241224
],
12251225
],

reference/configuration/framework.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3092,7 +3092,7 @@ A list of workflows to be created by the framework extension:
30923092
// config/packages/workflow.php
30933093
$container->loadFromExtension('framework', [
30943094
'workflows' => [
3095-
'my_workflow' => [ /* ... */]
3095+
'my_workflow' => [ /* ... */ ]
30963096
],
30973097
]);
30983098

0 commit comments

Comments
 (0)