golden hour
/home/godaofbq/hyperbaric-revolution.com/wp-content/plugins/discountify/utils
⬆️ Go Up
Upload
File/Folder
Size
Actions
helper.php
18.51 KB
Del
OK
singleton.php
313 B
Del
OK
Edit: singleton.php
<?php namespace Discountify\Utils; defined( 'ABSPATH' ) || exit; /** * Singleton trait * get instance * * @since 1.0.0 */ trait Singleton { private static $instance; public static function instance() { if ( ! self::$instance ) { self::$instance = new static(); } return self::$instance; } }
Save