2
0
forked from Wavyzz/dolibarr

Fix PhanPluginRedundantAssignment

This commit is contained in:
MDW
2024-03-13 00:29:58 +01:00
parent e50f2028e4
commit 452b2600be

View File

@@ -283,7 +283,7 @@ function dol_json_decode($json, $assoc = false)
// @phan-suppress-next-line PhanPluginUnsafeEval // @phan-suppress-next-line PhanPluginUnsafeEval
eval('$array = '.$out.';'); eval('$array = '.$out.';');
} catch (Exception $e) { } catch (Exception $e) {
$array = array(); $array = array(); // @phan-suppress-current-line PhanPluginRedundantAssignment
} }
} }