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

Add parameter types to all the things

This commit is contained in:
Jordi Boggiano 2022-02-22 16:47:09 +01:00
parent c9baeda95b
commit 6da38f83a0
No known key found for this signature in database
GPG key ID: 7BBD42C429EC80BC
279 changed files with 1377 additions and 1504 deletions

View file

@ -1085,7 +1085,7 @@ Linked Version => 1.2.11',
*/
public function testLibraryInformation(
$extensions,
$info,
?string $info,
array $expectations,
array $functions = array(),
array $constants = array(),
@ -1199,7 +1199,7 @@ Linked Version => 1.2.11',
*
* @return void
*/
private function assertPackageLinks($context, array $expectedLinks, PackageInterface $sourcePackage, array $links): void
private function assertPackageLinks(string $context, array $expectedLinks, PackageInterface $sourcePackage, array $links): void
{
self::assertCount(count($expectedLinks), $links, sprintf('%s: expected package count to match', $context));
@ -1263,7 +1263,7 @@ Linked Version => 1.2.11',
* @param bool $expectation
* @dataProvider providePlatformPackages
*/
public function testValidPlatformPackages($packageName, $expectation): void
public function testValidPlatformPackages(string $packageName, bool $expectation): void
{
self::assertSame($expectation, PlatformRepository::isPlatformPackage($packageName));
}
@ -1280,7 +1280,7 @@ class ResourceBundleStub
*
* @return ResourceBundleStub
*/
public static function create($locale, $bundleName, $fallback): ResourceBundleStub
public static function create(string $locale, string $bundleName, bool $fallback): ResourceBundleStub
{
Assert::assertSame(3, func_num_args());
Assert::assertSame('root', $locale);
@ -1314,7 +1314,7 @@ class ImagickStub
/**
* @param string $versionString
*/
public function __construct($versionString)
public function __construct(string $versionString)
{
$this->versionString = $versionString;
}