1
0
Fork 0
mirror of https://github.com/composer/composer synced 2025-05-09 00:22:53 +00:00

Add void types where no return statement is present

This commit is contained in:
Jordi Boggiano 2022-02-18 10:38:54 +01:00
parent 32852304d0
commit abdc6893a6
No known key found for this signature in database
GPG key ID: 7BBD42C429EC80BC
213 changed files with 1129 additions and 1130 deletions

View file

@ -79,7 +79,7 @@ class GitBitbucketDriverTest extends TestCase
return $driver;
}
public function testGetRootIdentifierWrongScmType()
public function testGetRootIdentifierWrongScmType(): void
{
self::expectException('RuntimeException');
self::expectExceptionMessage('https://bitbucket.org/user/repo.git does not appear to be a git repository, use https://bitbucket.org/user/repo but remember that Bitbucket no longer supports the mercurial repositories. https://bitbucket.org/blog/sunsetting-mercurial-support-in-bitbucket');
@ -195,7 +195,7 @@ class GitBitbucketDriverTest extends TestCase
* @depends testDriver
* @param \Composer\Repository\Vcs\VcsDriverInterface $driver
*/
public function testGetParams($driver)
public function testGetParams($driver): void
{
$url = 'https://bitbucket.org/user/repo.git';
@ -217,7 +217,7 @@ class GitBitbucketDriverTest extends TestCase
);
}
public function testInitializeInvalidRepositoryUrl()
public function testInitializeInvalidRepositoryUrl(): void
{
$this->expectException('\InvalidArgumentException');
@ -225,7 +225,7 @@ class GitBitbucketDriverTest extends TestCase
$driver->initialize();
}
public function testSupports()
public function testSupports(): void
{
$this->assertTrue(
GitBitbucketDriver::supports($this->io, $this->config, 'https://bitbucket.org/user/repo.git')