Tomas Votruba 345a89a7e2 Updated Rector to commit a657258f317da1f6fd42069bf3b09198d3cfd635
a657258f31 cleanup CHANGELOG, is part of GitHub releases now (#2)
2021-05-10 00:23:30 +00:00

30 lines
484 B
Plaintext

<?php
namespace PHPUnit\Framework\MockObject;
use PHPUnit\Framework\TestCase;
/**
* @template TMockedClass
*/
class MockBuilder
{
/**
* @phpstan-param TestCase $testCase
* @phpstan-param class-string<TMockedClass> $type
*/
public function __construct(TestCase $testCase, $type) {}
/**
* @phpstan-return MockObject&TMockedClass
*/
public function getMock() {}
/**
* @phpstan-return MockObject&TMockedClass
*/
public function getMockForAbstractClass() {}
}