zZzzZ.
home2
/
zrzvbdry
/
public_html
/
wp-content
/
plugins
/
woolentor-addons
/
includes
/
traits
New Folder
Editing: singleton.php
Save
Cancel
<?php namespace WooLentor\Traits; trait Singleton { private static $_instance = null; /** * Get Instance */ public static function instance(){ if( is_null( self::$_instance ) ){ self::$_instance = new self(); } return self::$_instance; } }