✏️ 正在编辑: class-compatibility.php
路径:
/home/eblama1/mintawon.farm/wp-content/plugins/burst-statistics/includes/class-compatibility.php
提示:
您可以编辑任何文件(包括二进制文件),但请注意不当修改可能导致文件损坏。
<?php /** * This class ensures there is no conflict during activation of premium when free is active */ if ( ! class_exists( 'BURST' ) ) { //phpcs:ignore class BURST { public static $instance; /** * Instance */ public static function instance(): BURST { if ( ! isset( self::$instance ) && ! ( self::$instance instanceof BURST ) ) { self::$instance = new BURST(); } return self::$instance; } } }
💾 保存文件
← 返回文件管理器