From d51a27d802de24d66c539d9db8618529039b764a Mon Sep 17 00:00:00 2001 From: Jimish Gamit Date: Mon, 2 Mar 2026 13:21:30 +0530 Subject: [PATCH] fix: TenantDump command getOptions phpstan fix --- src/Commands/TenantDump.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Commands/TenantDump.php b/src/Commands/TenantDump.php index 32677efc..97f9d539 100644 --- a/src/Commands/TenantDump.php +++ b/src/Commands/TenantDump.php @@ -63,7 +63,7 @@ class TenantDump extends DumpCommand protected function getOptions(): array { return array_merge([ - ['tenant', null, InputOption::VALUE_OPTIONAL, '', null], + new InputOption('tenant', null, InputOption::VALUE_OPTIONAL, '', null), ], parent::getOptions()); } }