PluginProbe
EmailKit – Email Customizer for WooCommerce & WP / 1.6.9
EmailKit – Email Customizer for WooCommerce & WP v1.6.9
1.6.9 1.6.8 1.6.7 trunk 1.0.0 1.2.0 1.4.0 1.4.5 1.5.0 1.5.1 1.5.2 1.5.3 1.5.4 1.5.5 1.5.6 1.5.7 1.5.8 1.5.9 1.6.0 1.6.1 1.6.2 1.6.3 1.6.4 1.6.5 1.6.6
emailkit / traits / singleton.php

singleton.php in EmailKit – Email Customizer for WooCommerce & WP 1.6.9, at traits/singleton.php

18 lines 270 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 namespace EmailKit\Traits;
4
5 trait Singleton
6 {
7
8 private static $instance;
9
10 public static function instance()
11 {
12 if (!self::$instance) {
13 self::$instance = new self();
14 }
15 return self::$instance;
16 }
17 }
18