golden hour
/home/godaofbq/hyperbaric-revolution.com/wp-content/plugins/quicker-pro/utils
⬆️ Go Up
Upload
File/Folder
Size
Actions
helper.php
2.59 KB
Del
OK
singleton.php
312 B
Del
OK
Edit: singleton.php
<?php namespace QuickerPro\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