Skip to content

Commit

Permalink
Remove space from command name default.
Browse files Browse the repository at this point in the history
  • Loading branch information
polevaultweb committed Sep 18, 2019
1 parent 4f512d1 commit 71abb41
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Database/Migrator.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ class Migrator {
*
* @return Migrator Instance
*/
public static function instance( $command_name = 'dbi ') {
public static function instance( $command_name = 'dbi') {
if ( ! isset( self::$instance ) && ! ( self::$instance instanceof Migrator ) ) {
self::$instance = new Migrator();
self::$instance->init( $command_name );
Expand Down

0 comments on commit 71abb41

Please sign in to comment.