Esempio n. 1
0
 public function __construct()
 {
     if (self::$instance !== null) {
         throw new Exception(__CLASS__ . ": singleton pattern");
     }
     self::$instance = $this;
     parent::__construct();
 }