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 Apr 2, 2024
1 parent 7461fcb commit 8060c0d
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_2110', false ) ) {
if ( ! class_exists( 'CMB2_Bootstrap_2120_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_2110 {
class CMB2_Bootstrap_2120_Develop {

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

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

/**
* Creates/returns the single instance CMB2_Bootstrap_2110 object
* Creates/returns the single instance CMB2_Bootstrap_2120_Develop object
*
* @since 2.0.0
* @return CMB2_Bootstrap_2110 Single instance object
* @return CMB2_Bootstrap_2120_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_2110::initiate();
CMB2_Bootstrap_2120_Develop::initiate();

}// End if().

0 comments on commit 8060c0d

Please sign in to comment.