Completed
Push — master ( 9b98d4...f3f280 )
by Maciej
06:39
created

Singleton::get()   A

Complexity

Conditions 2
Paths 2

Size

Total Lines 8
Code Lines 4

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 3
CRAP Score 2.2559

Importance

Changes 2
Bugs 0 Features 0
Metric Value
cc 2
eloc 4
nc 2
nop 0
dl 0
loc 8
ccs 3
cts 5
cp 0.6
crap 2.2559
rs 10
c 2
b 0
f 0
1
<?php
2
/**
3
 * Highlighter
4
 *
5
 * Copyright (C) 2016, Some right reserved.
6
 *
7
 * @author Kacper "Kadet" Donat <[email protected]>
8
 *
9
 * Contact with author:
10
 * Xmpp: [email protected]
11
 * E-mail: [email protected]
12
 *
13
 * From Kadet with love.
14
 */
15
16
namespace Kadet\Highlighter\Utils;
17
18
trait Singleton
19
{
20
    /**
21
     * @var static
22
     */
23
    private static $_instance;
24
25
    /**
26
     * @return static
27
     */
28 8
    public static function get()
29
    {
30 8
        if (!isset(self::$_instance)) {
31
            self::$_instance = new static();
32
            self::$_instance->init();
33
        }
34
35 8
        return self::$_instance;
36
    }
37
38
    public function init() {}
39
}
40