ascvh@#%(^-^)V ?host,ip,port,protocol,title,domain,country,city,link,org ???à JFIF x x ?? C ?? C ?à " ?? ?? μ } !1AQa "q2?‘?#B±áR?e$3br? %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz??…???‰?’“”?–—???¢£¤¥|§¨?a23′μ?·?1o??????èéêòó???×?ùúáa?????èéê?òó???÷?ùú?? ?? μ w !1AQ aq"2?B‘?±á #3Rebr?{
File "singleton.php"
Full Path: /home/zcziejy/ryadselyen/plugins/connect-polylang-elementor/includes/util/singleton.php
File size: 398 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
namespace ConnectPolylangElementor\Util;
defined( 'ABSPATH' ) || exit;
trait Singleton {
/**
* Singleton instance.
*
* @var self|null
*/
private static $instance = null;
/**
* Instantiates Manager.
*
* @return Manager
*/
public static function instance() {
if ( is_null( self::$instance ) ) {
self::$instance = new self();
}
return self::$instance;
}
}