Skip to content

Commit 0f4fed2

Browse files
Fix CS/WS issues
1 parent a01fd3f commit 0f4fed2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/unit/Framework/MockObject/Builder/InvocationMockerTest.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ public function testWillReturnFailsWhenTryingToReturnSingleIncompatibleClass():
154154

155155
public function testWillReturnAllowsMatchersForMultipleMethodsWithDifferentReturnTypes(): void
156156
{
157-
/** @var ClassWithAllPossibleReturnTypes|\PHPUnit\Framework\MockObject\MockObject $mock */
157+
/** @var ClassWithAllPossibleReturnTypes|MockObject $mock */
158158
$mock = $this->getMockBuilder(ClassWithAllPossibleReturnTypes::class)
159159
->getMock();
160160

@@ -206,7 +206,7 @@ public function testWillReturnValidTypeForLowercaseMethod(): void
206206
*/
207207
public function testWillReturnFailsWhenTryingToReturnValueFromVoidMethod(): void
208208
{
209-
/** @var ClassWithAllPossibleReturnTypes|\PHPUnit\Framework\MockObject\MockObject $out */
209+
/** @var ClassWithAllPossibleReturnTypes|MockObject $out */
210210
$out = $this->createMock(ClassWithAllPossibleReturnTypes::class);
211211
$method = $out->method('methodWithVoidReturnTypeDeclaration');
212212

0 commit comments

Comments
 (0)