1
0
Fork 0
mirror of https://github.com/composer/composer synced 2025-05-10 17:12:51 +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

@ -52,7 +52,7 @@ class FossilDownloaderTest extends TestCase
return new FossilDownloader($io, $config, $executor, $filesystem);
}
public function testInstallForPackageWithoutSourceReference()
public function testInstallForPackageWithoutSourceReference(): void
{
$packageMock = $this->getMockBuilder('Composer\Package\PackageInterface')->getMock();
$packageMock->expects($this->once())
@ -65,7 +65,7 @@ class FossilDownloaderTest extends TestCase
$downloader->install($packageMock, '/path');
}
public function testInstall()
public function testInstall(): void
{
$packageMock = $this->getMockBuilder('Composer\Package\PackageInterface')->getMock();
$packageMock->expects($this->any())
@ -86,7 +86,7 @@ class FossilDownloaderTest extends TestCase
$downloader->install($packageMock, 'repo');
}
public function testUpdateforPackageWithoutSourceReference()
public function testUpdateforPackageWithoutSourceReference(): void
{
$initialPackageMock = $this->getMockBuilder('Composer\Package\PackageInterface')->getMock();
$sourcePackageMock = $this->getMockBuilder('Composer\Package\PackageInterface')->getMock();
@ -102,7 +102,7 @@ class FossilDownloaderTest extends TestCase
$downloader->cleanup('update', $sourcePackageMock, '/path', $initialPackageMock);
}
public function testUpdate()
public function testUpdate(): void
{
// Ensure file exists
$file = $this->workingDir . '/.fslckout';
@ -134,7 +134,7 @@ class FossilDownloaderTest extends TestCase
$downloader->cleanup('update', $packageMock, $this->workingDir, $packageMock);
}
public function testRemove()
public function testRemove(): void
{
// Ensure file exists
$file = $this->workingDir . '/.fslckout';
@ -159,7 +159,7 @@ class FossilDownloaderTest extends TestCase
$downloader->cleanup('uninstall', $packageMock, $this->workingDir);
}
public function testGetInstallationSource()
public function testGetInstallationSource(): void
{
$downloader = $this->getDownloaderMock(null);