From 3c09e4021ef4ff449b189f0f80388b5227b01caa Mon Sep 17 00:00:00 2001 From: Markus Staab Date: Tue, 21 Apr 2020 15:04:47 +0200 Subject: [PATCH] fixed typo --- src/Composer/Package/PackageInterface.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Composer/Package/PackageInterface.php b/src/Composer/Package/PackageInterface.php index 18f72960f..cda65f5cb 100644 --- a/src/Composer/Package/PackageInterface.php +++ b/src/Composer/Package/PackageInterface.php @@ -283,7 +283,7 @@ interface PackageInterface * directories for autoloading using the type specified. * * @return array Mapping of autoloading rules - * @psalm-return array{psr-0?: array, psr-4?: array, classmap?: list, file?: list} + * @psalm-return array{psr-0?: array, psr-4?: array, classmap?: list, files?: list} */ public function getAutoload(); @@ -296,7 +296,7 @@ interface PackageInterface * directories for autoloading using the type specified. * * @return array Mapping of dev autoloading rules - * @psalm-return array{psr-0?: array, psr-4?: array, classmap?: list, file?: list} + * @psalm-return array{psr-0?: array, psr-4?: array, classmap?: list, files?: list} */ public function getDevAutoload();