We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 89350d9 commit a7b3fdeCopy full SHA for a7b3fde
src/SteveEdson/BitBar.php
@@ -122,15 +122,15 @@ public function setTerminal($boolean) {
122
return $this;
123
}
124
125
+
126
/**
- * @param string text
127
- * @param array $params
128
- *
+ * @param string $command Command to run when selected
+ * @param array $params specify arguments to the script
129
* @return $this
130
*/
131
- public function setBash( $text, array $params = [] )
+ public function setBash($command, array $params = array())
132
{
133
- $this->bash = $text;
+ $this->bash = $command;
134
$this->params = $params;
135
136
0 commit comments