예제 #1
0
파일: frame.php 프로젝트: rasuldev/torino
 /**
  * Singleton instance.
  *
  * @return Frame
  */
 public static function getInstance()
 {
     if (is_null(self::$instance)) {
         self::$instance = new Frame();
     }
     return self::$instance;
 }