mehrshaddarzi / wp-trait

Fast and standard development of WordPress plugins
MIT License
15 stars 5 forks source link

Create Singleton.php #36

Closed 1mahdimf closed 2 years ago

1mahdimf commented 2 years ago

Singleton Design Pattern

mehrshaddarzi commented 2 years ago

@1mahdimf Please give me an example for writing in the package documention

1mahdimf commented 2 years ago
use WPTrait\Utils;

/**
 * Class which uses singleton trait.
 */
class SingletonClass {
    use Singleton;
}

// To get the instance of the class.
$instance = SingletonClass::instance();