コード例 #1
0
ファイル: Auth.php プロジェクト: ClaudioThomas/shopware-4
 /**
  * Get an instance from this object
  * @static
  * @return Shopware_Components_Auth
  */
 public static function getInstance()
 {
     if (null === self::$_instance) {
         self::$_instance = new self();
     }
     return self::$_instance;
 }