Skip to content

Commit 68c6d75

Browse files
author
David Ryan
committed
repair and version bump
1 parent 4710864 commit 68c6d75

File tree

11 files changed

+21
-18
lines changed

11 files changed

+21
-18
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_3_0\Admin;
3+
namespace PHX_WP_DEVKIT\V_3_1\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_3_0\Admin;
3+
namespace PHX_WP_DEVKIT\V_3_1\Admin;
44

55
class Generators_Page {
66
/**

app/admin/class-init.php

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

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

55
/**
66
* Class Init
7-
* @package Wordpress_development_toolkit
87
*/
98
class Init {
109

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_3_0\Admin;
3+
namespace PHX_WP_DEVKIT\V_3_1\Admin;
44

55
class Plugin_Generator_Form {
66

app/admin/class-product-machine.php

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

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

5-
use RecursiveDirectoryIterator;
6-
use RecursiveIteratorIterator;
7-
use ZipArchive;
5+
use \RecursiveDirectoryIterator;
6+
use \RecursiveIteratorIterator;
7+
use \ZipArchive;
88

99
/**
1010
* Class Product_Machine
@@ -267,4 +267,5 @@ static function get_abstract_plugin_base_namespace( $file_contents ) {
267267

268268
return null;
269269
}
270+
270271
}

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_3_0\Admin;
3+
namespace PHX_WP_DEVKIT\V_3_1\Admin;
44

55
class Toolkit_Dashboard_Page {
66
/**

app/admin/templates/main.php

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
<?php
2+
// start that php
3+
?>
14
<script id="tmpl-wp-phx-tools" type="text/html">
25
<table width="100%">
36
<tr>
@@ -111,4 +114,4 @@
111114
</div>
112115
</div>
113116
<br class="clear" />
114-
</script>
117+
</script>

app/boilerplates/simple/app/admin/class-app.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
* @subpackage <%= PKG %>
77
*/
88

9-
namespace < %= PRIMARY_NAMESPACE %>\< %= SECONDARY_NAMESPACE %>\Admin;
9+
namespace <%= PRIMARY_NAMESPACE %>\<%= SECONDARY_NAMESPACE %>\Admin;
1010

1111
/**
1212
* Class App

app/boilerplates/simple/app/class-plugin.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
namespace <%= PRIMARY_NAMESPACE %>\<%= SECONDARY_NAMESPACE %>;
1010

11-
use <%= PRIMARY_NAMESPACE %>\< %= SECONDARY_NAMESPACE %>\Admin;;
11+
use <%= PRIMARY_NAMESPACE %>\<%= SECONDARY_NAMESPACE %>\Admin;
1212
use <%= ABSTRACT_PLUGIN_NAMESPACE %>\Abstract_Plugin;
1313

1414
if ( ! function_exists( 'add_filter' ) ) {

app/class-plugin.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55
* @package WordPress
66
*/
77

8-
namespace PHX_WP_DEVKIT\V_3_0;
8+
namespace PHX_WP_DEVKIT\V_3_1;
99

10-
use PHX_WP_DEVKIT\V_3_0\Admin;
10+
use PHX_WP_DEVKIT\V_3_1\Admin;
1111
use WPAZ_Plugin_Base\V_2_6\Abstract_Plugin;
1212

1313
/**

0 commit comments

Comments
 (0)