Skip to content

Commit

Permalink
Updated namespace in helpers and notices.
Browse files Browse the repository at this point in the history
  • Loading branch information
pauiglesias committed Jan 4, 2019
1 parent 1a87549 commit 2f29a84
Show file tree
Hide file tree
Showing 12 changed files with 14 additions and 14 deletions.
4 changes: 2 additions & 2 deletions helpers/boot.php
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
<?php

// Subpackage namespace
namespace LittleBizzy\PluginNamespace\Helpers;
namespace LittleBizzy\ForceHTTPS\Helpers;

// Aliased namespaces
use LittleBizzy\PluginNamespace\Notices;
use LittleBizzy\ForceHTTPS\Notices;

// Block direct calls
if (!function_exists('add_action')) {
Expand Down
2 changes: 1 addition & 1 deletion helpers/context.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php

// Subpackage namespace
namespace LittleBizzy\PluginNamespace\Helpers;
namespace LittleBizzy\ForceHTTPS\Helpers;

/**
* Context class
Expand Down
2 changes: 1 addition & 1 deletion helpers/factory.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php

// Subpackage namespace
namespace LittleBizzy\PluginNamespace\Helpers;
namespace LittleBizzy\ForceHTTPS\Helpers;

/**
* Object Factory base class
Expand Down
2 changes: 1 addition & 1 deletion helpers/loader.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php

// Subpackage namespace
namespace LittleBizzy\PluginNamespace\Helpers;
namespace LittleBizzy\ForceHTTPS\Helpers;

/**
* AutoLoader class
Expand Down
2 changes: 1 addition & 1 deletion helpers/module.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php

// Subpackage namespace
namespace LittleBizzy\PluginNamespace\Helpers;
namespace LittleBizzy\ForceHTTPS\Helpers;

/**
* Module class
Expand Down
2 changes: 1 addition & 1 deletion helpers/plugin.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php

// Subpackage namespace
namespace LittleBizzy\PluginNamespace\Helpers;
namespace LittleBizzy\ForceHTTPS\Helpers;

/**
* Plugin class
Expand Down
2 changes: 1 addition & 1 deletion helpers/registrar.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php

// Subpackage namespace
namespace LittleBizzy\PluginNamespace\Helpers;
namespace LittleBizzy\ForceHTTPS\Helpers;

/**
* Registrar class
Expand Down
2 changes: 1 addition & 1 deletion helpers/runner.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php

// Subpackage namespace
namespace LittleBizzy\PluginNamespace\Helpers;
namespace LittleBizzy\ForceHTTPS\Helpers;

/**
* Runner class
Expand Down
2 changes: 1 addition & 1 deletion helpers/singleton.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php

// Subpackage namespace
namespace LittleBizzy\PluginNamespace\Helpers;
namespace LittleBizzy\ForceHTTPS\Helpers;

/**
* Singleton class
Expand Down
2 changes: 1 addition & 1 deletion notices/admin-notices-ms.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
*/

// Subpackage namespace
namespace LittleBizzy\PluginNamespace\Notices;
namespace LittleBizzy\ForceHTTPS\Notices;

/**
* Admin Notices MultiSite class
Expand Down
2 changes: 1 addition & 1 deletion notices/admin-notices-php.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
*/

// Subpackage namespace
namespace LittleBizzy\PluginNamespace\Notices;
namespace LittleBizzy\ForceHTTPS\Notices;

/**
* Admin Notices PHP class
Expand Down
4 changes: 2 additions & 2 deletions notices/admin-notices.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@
*/

// Subpackage namespace
namespace LittleBizzy\PluginNamespace\Notices;
namespace LittleBizzy\ForceHTTPS\Notices;

// Aliased namespaces
use LittleBizzy\PluginNamespace as PluginRoot;
use LittleBizzy\ForceHTTPS as PluginRoot;

/**
* Admin Notices class
Expand Down

0 comments on commit 2f29a84

Please sign in to comment.