PATH:
home
/
niazsaze
/
public_html
/
wp-content
/
plugins
/
wp-statistics
/
src
/
Components
<?php namespace WP_Statistics\Components; /** * Simple singleton that we will extend */ class Singleton { /** * @var Singleton[] $instance Instance */ private static $instances = []; /** * Construct */ private function __construct() { } /** * Get Instance * * @return Singleton Instance */ public static function instance() { $class = static::class; if (!isset(self::$instances[$class])) { self::$instances[$class] = new static(); } return self::$instances[$class]; } }
[-] DateRange.php
[edit]
[-] RemoteRequest.php
[edit]
[-] Encryptor.php
[edit]
[-] AssetNameObfuscator.php
[edit]
[-] SystemCleaner.php
[edit]
[-] Event.php
[edit]
[-] Assets.php
[edit]
[-] View.php
[edit]
[-] Singleton.php
[edit]
[-] Ajax.php
[edit]
[-] DateTime.php
[edit]
[+]
..