PATH:
home
/
lab2454c
/
fcxpro.com
/
wp-content
/
plugins
/
instagram-feed
/
vendor
/
smashballoon
/
stubs
/
src
/
Traits
<?php namespace Smashballoon\Stubs\Traits; trait Singleton { protected static $instance; final public static function getInstance() { return isset(static::$instance) ? static::$instance : static::$instance = new static; } final private function __construct() { $this->init(); } protected function init() {} final public function __wakeup() {} final private function __clone() {} }
[+]
..
[-] Singleton.php
[edit]