0byt3m1n1-V2
Path:
/
home
/
yvffpqmy
/
public_html
/
wp-content
/
plugins
/
metform-pro
/
traits
/
[
Home
]
File: singleton.php
<?php namespace MetForm_Pro\Traits; trait Singleton{ private static $instance; public static function instance(){ if (!self::$instance){ self::$instance = new self(); } return self::$instance; } }
©
2018.