first commit

This commit is contained in:
dwindown
2025-08-21 20:39:34 +07:00
commit 58c1497171
576 changed files with 177044 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
<?php
namespace Formipay\Traits;
trait SingletonTrait {
private static $instance = null;
public static function get_instance() {
if (null === static::$instance) {
static::$instance = new static();
}
return static::$instance;
}
private function __clone() {}
public function __wakeup() {}
}