Skip to content

Commit d7e8035

Browse files
committed
Merge branch '4.4' into 5.3
* 4.4: Remove wrong parameter in MockHub The Doctrine adapter is not a database adapter Fix confusion of HttpKernel and Kernel
2 parents 6eb91c4 + d54129d commit d7e8035

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

components/cache/adapters/filesystem_adapter.rst

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,7 @@ and cache root path as constructor parameters::
4545
choices. If throughput is paramount, the in-memory adapters
4646
(:ref:`Apcu <apcu-adapter>`, :ref:`Memcached <memcached-adapter>`, and
4747
:ref:`Redis <redis-adapter>`) or the database adapters
48-
(:ref:`Doctrine <doctrine-adapter>` and :ref:`PDO <pdo-doctrine-adapter>`)
49-
are recommended.
48+
(:ref:`PDO <pdo-doctrine-adapter>`) are recommended.
5049

5150
.. note::
5251

components/dependency_injection/workflow.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ Working with a Cached Container
2121
-------------------------------
2222

2323
Before building it, the kernel checks to see if a cached version of the
24-
container exists. The HttpKernel has a debug setting and if this is false,
24+
container exists. The kernel has a debug setting and if this is false,
2525
the cached version is used if it exists. If debug is true then the kernel
2626
:doc:`checks to see if configuration is fresh </components/config/caching>`
2727
and if it is, the cached version of the container is used. If not then the

mercure.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -577,7 +577,7 @@ You can instead make use of the `MockHub`::
577577
{
578578
public function testPublishing()
579579
{
580-
$hub = new MockHub('default', 'https://internal/.well-known/mercure', new StaticTokenProvider('foo'), function(Update $update): string {
580+
$hub = new MockHub('https://internal/.well-known/mercure', new StaticTokenProvider('foo'), function(Update $update): string {
581581
// $this->assertTrue($update->isPrivate());
582582

583583
return 'id';

0 commit comments

Comments
 (0)