tomopongrac9 years agoLevel 51ReplyReport SpamI would set contructor private so it is impossible to instantiate the class class Demo { static private $client; private function __construct() {} public static function init() { self::$client = new Client(); } ... } Demo::init(); Like Reply