Skip to content

Commit

Permalink
11.2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
dmitrii-fediuk committed Jun 10, 2024
1 parent 6861662 commit 8d4666a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions Core/lib/array/unpack.php
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ function df_arg(array $a) {return isset($a[0]) && !isset($a[1]) ? $a[0] : $a;}
* @used-by df_csv()
* @used-by df_csv_pretty_quote()
* @used-by df_format()
* @used-by df_mvar_name()
* @used-by dfa_combine_self()
* @used-by dfa_unset()
* @see dfa_unpack()
Expand Down
2 changes: 1 addition & 1 deletion Variable/lib/main.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ function df_mvar(string $c) {return dfa(df_mvars(), $c);}
*/
function df_mvar_name(...$c) {
$r = df_call_a($c, function(string $c):string {return !($v = df_mvar($c)) ? '' : $v->getName();});
return !is_array($r) ? $r : array_combine($c, $r);
return !is_array($r) ? $r : array_combine(df_args($c), $r);
}

/**
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "mage2pro/core"
,"version": "11.2.1"
,"version": "11.2.2"
,"description": "Mage2.PRO core package."
,"type": "magento2-module"
,"homepage": "https://mage2.pro"
Expand Down

0 comments on commit 8d4666a

Please sign in to comment.