CAnaxSingleton::__construct()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 2
Bugs 0 Features 0
Metric Value
cc 1
eloc 2
c 2
b 0
f 0
nc 1
nop 1
dl 0
loc 4
rs 10
1
<?php
2
/**
3
 * Anax base class for wrapping sessions.
4
 */
5
6
namespace Anax\Kernel;
7
8
class CAnaxSingleton extends CAnax implements \Anax\ISingleton
9
{
10
    use \Anax\TSingleton;
11
12
13
    /**
14
     * Construct.
15
     *
16
     * @param array $di
17
     */
18
    public function __construct($di)
19
    {
20
        parent::__construct($di);
21
    }
22
}
23