Skip to content

Commit

Permalink
add setOrder
Browse files Browse the repository at this point in the history
  • Loading branch information
Mips2648 committed May 13, 2024
1 parent cc1805a commit bb5ab54
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/MipsEqLogicTrait.php
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,9 @@ public function createCommandsFromConfig(array $commands) {
if (isset($cmdDef["generic_type"])) {
$cmd->setGeneric_type($cmdDef["generic_type"]);
}
if (isset($cmdDef["order"])) {
$cmd->setOrder($cmdDef["order"]);
}
if (isset($cmdDef['display'])) {
foreach ($cmdDef['display'] as $key => $value) {
if ($key == 'title_placeholder' || $key == 'message_placeholder') {
Expand Down

0 comments on commit bb5ab54

Please sign in to comment.