Skip to content

Commit 847493b

Browse files
committed
Merge branch '6.4' into 7.0
* 6.4: Minor: remove duplicated lines
2 parents 3172768 + 230adac commit 847493b

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

46 files changed

+25
-55
lines changed

cache.rst

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -467,7 +467,6 @@ and use that when configuring the pool.
467467
->adapters(['cache.adapter.redis'])
468468
->provider('app.my_custom_redis_provider');
469469
470-
471470
$container->register('app.my_custom_redis_provider', \Redis::class)
472471
->setFactory([RedisAdapter::class, 'createConnection'])
473472
->addArgument('redis://localhost')

components/cache.rst

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,6 @@ The following cache adapters are available:
135135

136136
cache/adapters/*
137137

138-
139138
.. _cache-component-psr6-caching:
140139

141140
Generic Caching (PSR-6)

components/cache/adapters/couchbasebucket_adapter.rst

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,6 @@ the second and third parameters::
3535
$defaultLifetime
3636
);
3737

38-
3938
Configure the Connection
4039
------------------------
4140

@@ -67,7 +66,6 @@ helper method allows creating and configuring a `Couchbase Bucket`_ class instan
6766
'couchbase:?host[localhost]&host[localhost:12345]'
6867
);
6968

70-
7169
Configure the Options
7270
---------------------
7371

components/cache/adapters/couchbasecollection_adapter.rst

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,6 @@ the second and third parameters::
3232
$defaultLifetime
3333
);
3434

35-
3635
Configure the Connection
3736
------------------------
3837

@@ -64,7 +63,6 @@ helper method allows creating and configuring a `Couchbase Collection`_ class in
6463
'couchbase:?host[localhost]&host[localhost:12345]'
6564
);
6665

67-
6866
Configure the Options
6967
---------------------
7068

components/cache/adapters/filesystem_adapter.rst

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,5 @@ adapter offers better read performance when using tag-based invalidation::
6363

6464
$cache = new FilesystemTagAwareAdapter();
6565

66-
6766
.. _`tmpfs`: https://wiki.archlinux.org/index.php/tmpfs
6867
.. _`RAM disk solutions`: https://en.wikipedia.org/wiki/List_of_RAM_drive_software

components/cache/cache_pools.rst

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@ ready to use in your applications.
2525

2626
adapters/*
2727

28-
2928
Using the Cache Contracts
3029
-------------------------
3130

components/event_dispatcher/generic_event.rst

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,4 +99,3 @@ Filtering data::
9999
$event['data'] = strtolower($event['data']);
100100
}
101101
}
102-

components/http_kernel.rst

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@ The Workflow of a Request
2626
:doc:`/event_dispatcher` articles to learn about how to use it to create
2727
controllers and define events in Symfony applications.
2828

29-
3029
Every HTTP web interaction begins with a request and ends with a response.
3130
Your job as a developer is to create PHP code that reads the request information
3231
(e.g. the URL) and creates and returns a response (e.g. an HTML page or JSON string).

components/process.rst

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ Installation
1010
1111
$ composer require symfony/process
1212
13-
1413
.. include:: /components/require_autoload.rst.inc
1514

1615
Usage

configuration.rst

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -337,7 +337,6 @@ configuration file using a special syntax: wrap the parameter name in two ``%``
337337
]);
338338
};
339339
340-
341340
.. note::
342341

343342
If some parameter value includes the ``%`` character, you need to escape it

0 commit comments

Comments
 (0)