mirror of
https://github.com/composer/composer
synced 2025-05-09 00:22:53 +00:00
Type annotations
This commit is contained in:
parent
626370d444
commit
c3c6969cf5
21 changed files with 166 additions and 35 deletions
|
@ -24,15 +24,15 @@ use Composer\Util\Http\Response;
|
|||
*/
|
||||
class GitBitbucketDriverTest extends TestCase
|
||||
{
|
||||
/** @type \Composer\IO\IOInterface|\PHPUnit_Framework_MockObject_MockObject */
|
||||
/** @var \Composer\IO\IOInterface&\PHPUnit\Framework\MockObject\MockObject */
|
||||
private $io;
|
||||
/** @type \Composer\Config */
|
||||
/** @var Config */
|
||||
private $config;
|
||||
/** @type \Composer\Util\HttpDownloader|\PHPUnit_Framework_MockObject_MockObject */
|
||||
/** @var \Composer\Util\HttpDownloader&\PHPUnit\Framework\MockObject\MockObject */
|
||||
private $httpDownloader;
|
||||
/** @type string */
|
||||
/** @var string */
|
||||
private $home;
|
||||
/** @type string */
|
||||
/** @var string */
|
||||
private $originUrl = 'bitbucket.org';
|
||||
|
||||
protected function setUp()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue