plugin_path( 'wp-content/db.php' ), $drop_in ) ) { WP_CLI::success( 'wp-content/db.php symlink created' ); exit( 0 ); } else { WP_CLI::error( 'Failed to create wp-content/db.php symlink' ); } } /** * @param string $file * @return self */ public static function init( $file = null ) { static $instance = null; if ( ! $instance ) { $instance = new QM_CLI( $file ); } return $instance; } }