コード例 #1
0
ファイル: Config.php プロジェクト: andremoreei/deezer-poo
 /**
  * Gestion en singleton
  *
  * @return Config
  */
 public static function getInstance()
 {
     if (null === self::$_instance) {
         self::$_instance = new self();
     }
     return self::$_instance;
 }