Skip to content

Commit bc0ced7

Browse files
author
David Ryan
committed
version 3.0 bump
1 parent 835525c commit bc0ced7

8 files changed

+12
-12
lines changed

app/admin/class-auth-assets.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace PHX_WP_DEVKIT\V_2_5\Admin;
3+
namespace PHX_WP_DEVKIT\V_3_0\Admin;
44

55
/**
66
* Register and enqueue assets used in the WordPress Admin or only when a user is authenticated here.

app/admin/class-generators-page.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace PHX_WP_DEVKIT\V_2_5\Admin;
3+
namespace PHX_WP_DEVKIT\V_3_0\Admin;
44

55
class Generators_Page {
66
/**

app/admin/class-init.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace PHX_WP_DEVKIT\V_2_5\Admin;
3+
namespace PHX_WP_DEVKIT\V_3_0\Admin;
44

55
/**
66
* Class Init

app/admin/class-plugin-generator-form.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace PHX_WP_DEVKIT\V_2_5\Admin;
3+
namespace PHX_WP_DEVKIT\V_3_0\Admin;
44

55
class Plugin_Generator_Form {
66

app/admin/class-product-machine.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace PHX_WP_DEVKIT\V_2_5\Admin;
3+
namespace PHX_WP_DEVKIT\V_3_0\Admin;
44

55
use RecursiveDirectoryIterator;
66
use RecursiveIteratorIterator;

app/admin/class-toolkit-dashboard-page.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace PHX_WP_DEVKIT\V_2_5\Admin;
3+
namespace PHX_WP_DEVKIT\V_3_0\Admin;
44

55
class Toolkit_Dashboard_Page {
66
/**

app/class-plugin.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<?php
22

3-
namespace PHX_WP_DEVKIT\V_2_5;
3+
namespace PHX_WP_DEVKIT\V_3_0;
44

5-
use PHX_WP_DEVKIT\V_2_5\Admin;
5+
use PHX_WP_DEVKIT\V_3_0\Admin;
66
use WPAZ_Plugin_Base\V_2_6\Abstract_Plugin as Base;
77

88
/**

wordpress-development-toolkit.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
* @author David Ryan - WordPress Phoenix
77
* @license GNU GPL v2.0+
88
* @link https://github.com/wordpress-phoenix
9-
* @version 2.5.0
9+
* @version 3.0.0
1010
*
1111
* Built using WP PHX Plugin Generator v1.1.0 on Tuesday 23rd of January 2018 07:33:12 AM
1212
* @link https://github.com/WordPress-Phoenix/wordpress-development-toolkit
@@ -15,7 +15,7 @@
1515
* Plugin Name: WordPress Development Toolkit
1616
* Plugin URI: https://github.com/wordpress-phoenix
1717
* Description: Tools and resources for WordPress development.
18-
* Version: 2.5.0
18+
* Version: 3.0.0
1919
* Author: David Ryan - WordPress Phoenix
2020
* Text Domain: wordpress-development-toolkit
2121
* License: GNU GPL v2.0+
@@ -37,7 +37,7 @@
3737
* Check PHX_WP_DEVKIT\V_1_2\Plugin Instantiated
3838
* (The check prevents fatal error if multiple copies of plugin are activated or namespaces aren't unique)
3939
*/
40-
if ( ! class_exists( 'PHX_WP_DEVKIT\\V_2_5\\Plugin' ) ) {
40+
if ( ! class_exists( 'PHX_WP_DEVKIT\\V_3_0\\Plugin' ) ) {
4141
include_once trailingslashit( dirname( __FILE__ ) ) . 'app/class-plugin.php';
4242
} else {
4343
new WP_Error( '500', 'Multiple copies of PHX_WP_DEVKIT\V_1_2\Plugin are active' );
@@ -46,5 +46,5 @@
4646
/**
4747
* Start WordPress Development Toolkit Main Plugin Class
4848
*/
49-
PHX_WP_DEVKIT\V_2_5\Plugin::run( __FILE__ );
49+
PHX_WP_DEVKIT\V_3_0\Plugin::run( __FILE__ );
5050
// Please don't edit below this line.

0 commit comments

Comments
 (0)