Exemple #1
0
 public static function getInstance()
 {
     if (self::$singleton === null) {
         self::$singleton = new Paiement();
     }
     return self::$singleton;
 }