コード例 #1
0
ファイル: Cart.php プロジェクト: barricade86/laravel
 public static function getInstance()
 {
     if (null === self::$instance) {
         self::$instance = new self();
         self::$session = new Session();
     }
     return self::$instance;
 }
コード例 #2
0
ファイル: Cart.php プロジェクト: barricade86/rampage
 public static function getInstance()
 {
     if (null === self::$instance) {
         self::$instance = new self();
         Session::init();
     }
     return self::$instance;
 }