8000 minor #26184 Fix undiscoverablility of SymfonyTestsListenerForV7 (ker… · symfony/symfony@9041ec3 · GitHub
[go: up one dir, main page]

Skip to content

Commit 9041ec3

Browse files
minor #26184 Fix undiscoverablility of SymfonyTestsListenerForV7 (keradus)
This PR was merged into the 3.4 branch. Discussion ---------- Fix undiscoverablility of SymfonyTestsListenerForV7 | Q | A | ------------- | --- | Branch? | `3.4@dev` (and `4@dev`) | Bug fix? | yes | New feature? | no | BC breaks? | no | Deprecations? | no | Tests pass? | n/a | Fixed tickets | n/a | License | MIT | Doc PR | n/a As class is in wrong namespace, it's not discoverable by autoloader and during execution of aliasing we face following crash: ``` ker@dus:~/github/PHP-CS-Fixer λ vendor/bin/phpunit Class 'Symfony\Bridge\PhpUnit\Legacy\SymfonyTestsListenerForV7' not found ``` ---------------- 8000 - replaces #26180, which was wrongly sent (and merged) for `master` branch instead of `3.4`, sorry for mistake. Commits ------- 538b257 Fix undiscoverablility of SymfonyTestsListenerForV7
2 parents b375957 + 538b257 commit 9041ec3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Symfony/Bridge/PhpUnit/Legacy/SymfonyTestsListenerForV7.php

Lines changed: 1 addition & 1 deletion
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\Bridge\PhpUnit;
12+
namespace Symfony\Bridge\PhpUnit\Legacy;
1313

1414
use PHPUnit\Framework\Test;
1515
use PHPUnit\Framework\TestListener;

0 commit comments

Comments
 (0)
0