From 6218e0a6a88bcfca15490b8f5e5693306c28193b Mon Sep 17 00:00:00 2001 From: Clemens Schwaighofer Date: Mon, 2 Oct 2023 12:25:07 +0900 Subject: [PATCH] Output\Form\Generate fix for phan check --- www/lib/CoreLibs/Output/Form/Generate.php | 1 + 1 file changed, 1 insertion(+) diff --git a/www/lib/CoreLibs/Output/Form/Generate.php b/www/lib/CoreLibs/Output/Form/Generate.php index 78d514f3..a09eab66 100644 --- a/www/lib/CoreLibs/Output/Form/Generate.php +++ b/www/lib/CoreLibs/Output/Form/Generate.php @@ -1571,6 +1571,7 @@ class Generate // either one of the post pks is set, or the mandatory foreach ($reference_array['elements'] as $el_name => $data_array) { if ( + /** @phan-suppress-next-line PhanTypeMismatchDimAssignment This error makes no sense */ !empty($data_array['mandatory']) ) { $mand_name = $data_array['output_name'];