Completed
Pull Request — develop (#430)
by
unknown
03:01
created
src/Commands/UserCommands/HelpCommand.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -55,7 +55,7 @@  discard block
 block discarded – undo
55 55
 
56 56
         //Only get enabled Admin and User commands
57 57
         /** @var Command[] $command_objs */
58
-        $command_objs = array_filter($this->telegram->getCommandsList(), function ($command_obj) {
58
+        $command_objs = array_filter($this->telegram->getCommandsList(), function($command_obj) {
59 59
             /** @var Command $command_obj */
60 60
             return !$command_obj->isSystemCommand() && $command_obj->isEnabled();
61 61
         });
@@ -69,7 +69,7 @@  discard block
 block discarded – undo
69 69
             );
70 70
 
71 71
             foreach ($command_objs as $command) {
72
-                if($command->showInHelp()) {
72
+                if ($command->showInHelp()) {
73 73
                     continue;
74 74
                 }
75 75
 
Please login to merge, or discard this patch.