File tree 1 file changed +2
-2
lines changed
tests/unit/Framework/MockObject/Builder
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -154,7 +154,7 @@ public function testWillReturnFailsWhenTryingToReturnSingleIncompatibleClass():
154
154
155
155
public function testWillReturnAllowsMatchersForMultipleMethodsWithDifferentReturnTypes (): void
156
156
{
157
- /** @var ClassWithAllPossibleReturnTypes|\PHPUnit\Framework\MockObject\ MockObject $mock */
157
+ /** @var ClassWithAllPossibleReturnTypes|MockObject $mock */
158
158
$ mock = $ this ->getMockBuilder (ClassWithAllPossibleReturnTypes::class)
159
159
->getMock ();
160
160
@@ -206,7 +206,7 @@ public function testWillReturnValidTypeForLowercaseMethod(): void
206
206
*/
207
207
public function testWillReturnFailsWhenTryingToReturnValueFromVoidMethod (): void
208
208
{
209
- /** @var ClassWithAllPossibleReturnTypes|\PHPUnit\Framework\MockObject\ MockObject $out */
209
+ /** @var ClassWithAllPossibleReturnTypes|MockObject $out */
210
210
$ out = $ this ->createMock (ClassWithAllPossibleReturnTypes::class);
211
211
$ method = $ out ->method ('methodWithVoidReturnTypeDeclaration ' );
212
212
You can’t perform that action at this time.
0 commit comments