PluginProbe
Authorsy – Author Box, Multiple Authors, Guest Authors & Post Rating / trunk
Authorsy – Author Box, Multiple Authors, Guest Authors & Post Rating vtrunk
trunk 1.0.0 1.0.1 1.0.2 1.0.3 1.0.4 1.0.5 1.0.6 1.0.7 1.0.8
authorsy / utils / singleton.php

singleton.php in Authorsy – Author Box, Multiple Authors, Guest Authors & Post Rating trunk, at utils/singleton.php

24 lines 310 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 namespace Authorsy\Utils;
4
5 defined( 'ABSPATH' ) || exit;
6
7 /**
8 * Singleton trait
9 * get instance
10 *
11 * @since 1.0.0
12 */
13 trait Singleton {
14
15 private static $instance;
16
17 public static function instance() {
18 if ( ! self::$instance ) {
19 self::$instance = new static();
20 }
21 return self::$instance;
22 }
23 }
24