????

Your IP : 3.16.130.38


Current Path : /proc/thread-self/root/proc/self/cwd/wp-content/plugins/metform/traits/
Upload File :
Current File : //proc/thread-self/root/proc/self/cwd/wp-content/plugins/metform/traits/singleton.php

<?php

namespace MetForm\Traits;

trait Singleton
{

    private static $instance;

    public static function instance()
    {
        if (!self::$instance) {
            self::$instance = new self();
        }
        return self::$instance;
    }
}