Fix File
•
/
home
/
sportsfe...
/
httpdocs
/
wp-conte...
/
plugins
/
smart-sl...
/
Nextend
/
Framewor...
/
Pattern
•
File:
SingletonTrait.php
•
Content:
<?php namespace Nextend\Framework\Pattern; trait SingletonTrait { protected static $instance; final public static function getInstance() { return isset(static::$instance) ? static::$instance : static::$instance = new static; } private function __construct() { $this->init(); } protected function init() { } final public function __wakeup() { } final public function __clone() { } }
•
Search:
•
Replace:
Function
Edit by line
Download
Information
Rename
Copy
Move
Delete
Chmod
List