Skip to content

Commit 66360f6

Browse files
authored
Add default value of "mysql" for mysql-bin argument
1 parent 4ec7fd0 commit 66360f6

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/Smrtr/MysqlVersionControl/Command/Parameters/CommonParametersTrait.php

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,8 @@ protected function addMysqlBinArgument()
4848
return $this->addArgument(
4949
'mysql-bin',
5050
InputArgument::OPTIONAL,
51-
'Where is the MySQL binary located?'
51+
'Where is the MySQL binary located?',
52+
'mysql'
5253
);
5354
}
5455

@@ -105,4 +106,4 @@ protected function addProvisionalVersionOption()
105106
'The name of the provisional version'
106107
);
107108
}
108-
}
109+
}

0 commit comments

Comments
 (0)