Skip to content

Commit

Permalink
Add develop suffix to init class
Browse files Browse the repository at this point in the history
  • Loading branch information
jtsternberg committed Mar 4, 2021
1 parent cacbc8c commit 74e0262
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions init.php
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
* ***********************************************************************
*/

if ( ! class_exists( 'CMB2_Bootstrap_290', false ) ) {
if ( ! class_exists( 'CMB2_Bootstrap_290_Develop', false ) ) {

/**
* Handles checking for and loading the newest version of CMB2
Expand All @@ -66,7 +66,7 @@
* @license GPL-2.0+
* @link https://cmb2.io
*/
class CMB2_Bootstrap_290 {
class CMB2_Bootstrap_290_Develop {

/**
* Current version number
Expand All @@ -86,17 +86,17 @@ class CMB2_Bootstrap_290 {
const PRIORITY = 9959;

/**
* Single instance of the CMB2_Bootstrap_290 object
* Single instance of the CMB2_Bootstrap_290_Develop object
*
* @var CMB2_Bootstrap_290
* @var CMB2_Bootstrap_290_Develop
*/
public static $single_instance = null;

/**
* Creates/returns the single instance CMB2_Bootstrap_290 object
* Creates/returns the single instance CMB2_Bootstrap_290_Develop object
*
* @since 2.0.0
* @return CMB2_Bootstrap_290 Single instance object
* @return CMB2_Bootstrap_290_Develop Single instance object
*/
public static function initiate() {
if ( null === self::$single_instance ) {
Expand Down Expand Up @@ -193,6 +193,6 @@ public function l10ni18n() {
}

// Make it so...
CMB2_Bootstrap_290::initiate();
CMB2_Bootstrap_290_Develop::initiate();

}// End if().

0 comments on commit 74e0262

Please sign in to comment.