예제 #1
0
 /**
  * Returns a singleton of the DependencyContainer.
  *
  * @return Swift_DependencyContainer
  */
 public static function getInstance()
 {
     if (!isset(self::$_instance)) {
         self::$_instance = new self();
     }
     return self::$_instance;
 }