Skip to content

Commit 7e4d52d

Browse files
Merge branch '4.4' into 5.4
* 4.4: [Cache] Fix phpdoc [Messenger] Retain correlation id from \AmqpEnvelope when retrying a message
2 parents a9dd740 + 4ce00d6 commit 7e4d52d

File tree

1 file changed

+0
-10
lines changed

1 file changed

+0
-10
lines changed

Test/ProviderTestCase.php

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@
1111

1212
namespace Symfony\Component\Translation\Test;
1313

14-
use PHPUnit\Framework\MockObject\MockObject;
1514
use PHPUnit\Framework\TestCase;
1615
use Psr\Log\LoggerInterface;
1716
use Symfony\Component\HttpClient\MockHttpClient;
@@ -55,17 +54,11 @@ protected function getClient(): MockHttpClient
5554
return $this->client ?? $this->client = new MockHttpClient();
5655
}
5756

58-
/**
59-
* @return LoaderInterface&MockObject
60-
*/
6157
protected function getLoader(): LoaderInterface
6258
{
6359
return $this->loader ?? $this->loader = $this->createMock(LoaderInterface::class);
6460
}
6561

66-
/**
67-
* @return LoaderInterface&MockObject
68-
*/
6962
protected function getLogger(): LoggerInterface
7063
{
7164
return $this->logger ?? $this->logger = $this->createMock(LoggerInterface::class);
@@ -76,9 +69,6 @@ protected function getDefaultLocale(): string
7669
return $this->defaultLocale ?? $this->defaultLocale = 'en';
7770
}
7871

79-
/**
80-
* @return LoaderInterface&MockObject
81-
*/
8272
protected function getXliffFileDumper(): XliffFileDumper
8373
{
8474
return $this->xliffFileDumper ?? $this->xliffFileDumper = $this->createMock(XliffFileDumper::class);

0 commit comments

Comments
 (0)