GH#36 Fix argument sequence

This commit is contained in:
Sidsector9 2017-10-11 14:49:42 +05:30
parent 292a4566f1
commit 70d062deb2

View file

@ -274,9 +274,9 @@ class Command {
$order = Utils\get_flag_value( $assoc_args, 'order', 'ASC' );
$orderby = Utils\get_flag_value( $assoc_args, 'orderby', null );
self::profile_eval_ish( $order, $orderby, $assoc_args, function() use ( $statement ) {
self::profile_eval_ish( $assoc_args, function() use ( $statement ) {
eval( $statement );
});
}, $order, $orderby );
}
/**