Completed
Pull Request — master (#51)
by
unknown
03:04
created
src/Commands/CommandHandler.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -99,7 +99,7 @@  discard block
 block discarded – undo
99 99
      */
100 100
     public function addCommands(BasicCommand ...$commands)
101 101
     {
102
-      foreach ($commands as $command) {
102
+        foreach ($commands as $command) {
103 103
             $this->addCommand($command);
104 104
         }
105 105
     }
@@ -111,7 +111,7 @@  discard block
 block discarded – undo
111 111
      */
112 112
     public function addMessageCommand(string $command, callable $script)
113 113
     {
114
-      $this->_commands[] = new MessageCommand($command, $script);
114
+        $this->_commands[] = new MessageCommand($command, $script);
115 115
     }
116 116
 
117 117
     /**
@@ -121,7 +121,7 @@  discard block
 block discarded – undo
121 121
      */
122 122
     public function addCallbackCommand(string $data, callable $script)
123 123
     {
124
-      $this->_commands[] = new CallbackCommand($data, $script);
124
+        $this->_commands[] = new CallbackCommand($data, $script);
125 125
     }
126 126
 
127 127
     /** @} */
Please login to merge, or discard this patch.