Skip to content

Commit b13548f

Browse files
Fix namespace
1 parent 2aa0575 commit b13548f

File tree

4 files changed

+3
-4
lines changed

4 files changed

+3
-4
lines changed

tests/end-to-end/regression/6382.phpt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,5 @@ PHPUnit %s by Sebastian Bergmann and contributors.
1515
Runtime: %s
1616

1717

18-
Fatal error: Declaration of Greg0ire\PhpunitReproducer\Child6382::__invoke() must be compatible with Greg0ire\PhpunitReproducer\Ancestor6382::__invoke(): void in %sChild.php on line %d
18+
Fatal error: Declaration of PHPUnit\TestFixture\Issue6382\Child6382::__invoke() must be compatible with PHPUnit\TestFixture\Issue6382\Ancestor6382::__invoke(): void in %sChild.php on line %d
1919
%AFatal error: Premature end of PHP process when running PHPUnit\TestFixture\Issue6382\Issue6382Test::testExample.

tests/end-to-end/regression/6382/Ancestor.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
* For the full copyright and license information, please view the LICENSE
88
* file that was distributed with this source code.
99
*/
10-
namespace Greg0ire\PhpunitReproducer;
10+
namespace PHPUnit\TestFixture\Issue6382;
1111

1212
interface Ancestor6382
1313
{

tests/end-to-end/regression/6382/Child.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
* For the full copyright and license information, please view the LICENSE
88
* file that was distributed with this source code.
99
*/
10-
namespace Greg0ire\PhpunitReproducer;
10+
namespace PHPUnit\TestFixture\Issue6382;
1111

1212
interface Child6382 extends Ancestor6382
1313
{

tests/end-to-end/regression/6382/Issue6382Test.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99
*/
1010
namespace PHPUnit\TestFixture\Issue6382;
1111

12-
use Greg0ire\PhpunitReproducer\Child6382;
1312
use PHPUnit\Framework\TestCase;
1413

1514
class Issue6382Test extends TestCase

0 commit comments

Comments
 (0)