From 72abd63b6969bc733f88b9ef5991b9bba3cc686f Mon Sep 17 00:00:00 2001 From: DubbleClick Date: Tue, 29 Jul 2025 10:23:46 +0700 Subject: [PATCH] cs fix --- src/SPC/store/pkg/CustomPackage.php | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/SPC/store/pkg/CustomPackage.php b/src/SPC/store/pkg/CustomPackage.php index 9c7eead9..093f65d0 100644 --- a/src/SPC/store/pkg/CustomPackage.php +++ b/src/SPC/store/pkg/CustomPackage.php @@ -31,16 +31,15 @@ abstract class CustomPackage /** * Get the environment variables this package needs to be usable. * PATH needs to be appended, rather than replaced. - * - * @return array */ abstract public static function getEnvironment(): array; abstract public static function isInstalled(): bool; + /** * Extract the downloaded package * - * @param string $name Package name + * @param string $name Package name */ abstract public function extract(string $name): void; }