1616 * Plugin Name: Paystack Payments for Give
1717 * Plugin URI: http://wordpress.org/plugins/paystack-give
1818 * Description: Paystack integration for accepting payments via card, bank accounts, USSD and mobile money
19- * Version: 1.3 .0
19+ * Version: 1.4 .0
2020 * Author: Paystack
2121 * Author URI: https://paystack.com
2222 * License: GPL-2.0+
2626 */
2727
2828// If this file is called directly, abort.
29- if (! defined ('WPINC ' ) ) {
29+ if (!defined ('WPINC ' )) {
3030 die;
3131}
3232
3535 * Start at version 1.0.0 and use SemVer - https://semver.org
3636 * Rename this for your plugin and update it as you release new versions.
3737 */
38- define ('PLUGIN_NAME_VERSION ' , '1.3 .0 ' );
38+ define ('PLUGIN_NAME_VERSION ' , '1.4 .0 ' );
3939
4040/**
4141 * The code that runs during plugin activation.
4242 * This action is documented in includes/class-paystack-give-activator.php
4343 */
44- function activate_paystack_give ()
44+ function activate_paystack_give ()
4545{
4646 include_once plugin_dir_path (__FILE__ ) . 'includes/class-paystack-give-activator.php ' ;
4747 Paystack_Give_Activator::activate ();
@@ -51,7 +51,7 @@ function activate_paystack_give()
5151 * The code that runs during plugin deactivation.
5252 * This action is documented in includes/class-paystack-give-deactivator.php
5353 */
54- function deactivate_paystack_give ()
54+ function deactivate_paystack_give ()
5555{
5656 include_once plugin_dir_path (__FILE__ ) . 'includes/class-paystack-give-deactivator.php ' ;
5757 Paystack_Give_Deactivator::deactivate ();
@@ -75,11 +75,10 @@ function deactivate_paystack_give()
7575 *
7676 * @since 1.0.0
7777 */
78- function run_paystack_give ()
78+ function run_paystack_give ()
7979{
8080
8181 $ plugin = new Paystack_Give ();
8282 $ plugin ->run ();
83-
8483}
8584run_paystack_give ();
0 commit comments