Skip to content

Commit 7636fd6

Browse files
minor symfony#40913 [Translation] Move ProviderFactoryTestCase out of the Tests namespace (derrabus)
This PR was merged into the 5.3-dev branch. Discussion ---------- [Translation] Move ProviderFactoryTestCase out of the Tests namespace | Q | A | ------------- | --- | Branch? | 5.3 | Bug fix? | yes | New feature? | no | Deprecations? | no | Tickets | N/A | License | MIT | Doc PR | N/A Same as symfony#40911, different class. Sorry, I missed the seconds abstract class. 🙈 Commits ------- e01499d [Translation] Move ProviderFactoryTestCase out of the Tests namespace
2 parents ba2a354 + e01499d commit 7636fd6

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

src/Symfony/Component/Translation/Bridge/Loco/Tests/LocoProviderFactoryTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
use Symfony\Component\Translation\Bridge\Loco\Provider\LocoProviderFactory;
66
use Symfony\Component\Translation\Provider\ProviderFactoryInterface;
7-
use Symfony\Component\Translation\Tests\ProviderFactoryTestCase;
7+
use Symfony\Component\Translation\Test\ProviderFactoryTestCase;
88

99
class LocoProviderFactoryTest extends ProviderFactoryTestCase
1010
{

src/Symfony/Component/Translation/Tests/ProviderFactoryTestCase.php renamed to src/Symfony/Component/Translation/Test/ProviderFactoryTestCase.php

+3-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
* file that was distributed with this source code.
1010
*/
1111

12-
namespace Symfony\Component\Translation\Tests;
12+
namespace Symfony\Component\Translation\Test;
1313

1414
use PHPUnit\Framework\TestCase;
1515
use Psr\Log\LoggerInterface;
@@ -26,6 +26,8 @@
2626
* A test case to ease testing a translation provider factory.
2727
*
2828
* @author Mathieu Santostefano <[email protected]>
29+
*
30+
* @internal
2931
*/
3032
abstract class ProviderFactoryTestCase extends TestCase
3133
{

0 commit comments

Comments
 (0)