예제 #1
0
파일: compiler.php 프로젝트: Tommar/vino2
 public static function getInstance()
 {
     if (is_null(self::$instance)) {
         self::$instance = new self();
     }
     return self::$instance;
 }