From 86ec264b2b4b9f70f48dd789ef1b6ad8a9cd1d69 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jens=20Wittmann=20=E2=80=93=20Gestaltung=20=26=20Entwicklu?= =?UTF-8?q?ng?= Date: Wed, 8 Oct 2025 14:59:23 +0200 Subject: [PATCH] =?UTF-8?q?fix:=20modmore\Gitify\Command\ExtractCommand::e?= =?UTF-8?q?xtractPackages()=20=E2=80=93=20Implicitly=20marking=20parameter?= =?UTF-8?q?=20$file=20as=20nullable=20is=20deprecated?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/Command/ExtractCommand.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Command/ExtractCommand.php b/src/Command/ExtractCommand.php index 7cd9f3a..f73ddfa 100644 --- a/src/Command/ExtractCommand.php +++ b/src/Command/ExtractCommand.php @@ -497,7 +497,7 @@ protected function filterPathSegment($path) return \modResource::filterPathSegment($this->modx, $path, $options); } - private function extractPackages(string $file = null): void + private function extractPackages(string|null $file = null): void { $this->output->writeln('Extracting installed packages...'); $data = Gitify::loadConfig($file);