File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
tests/unit/Framework/MockObject/Builder Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments