Exemple #1
0
 /**
  * Singleton.
  * 
  * @return \Podlove\Model\Podcast
  */
 public static function get_instance()
 {
     if (!isset(self::$instance)) {
         self::$instance = new self();
     }
     return self::$instance;
 }