LSX_Sharing   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 7
Duplicated Lines 0 %

Importance

Changes 1
Bugs 1 Features 0
Metric Value
eloc 2
c 1
b 1
f 0
dl 0
loc 7
rs 10
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 2 1
1
<?php
2
/**
3
 * LSX_Sharing
4
 *
5
 * @package lsx-sharing
6
 */
7
8
/**
9
 * Deprecated class.
10
 */
11
class LSX_Sharing {
12
13
    /**
14
     * Constructor.
15
     */
16
    public function __construct() {
0 ignored issues
show
Coding Style introduced by
Expected 2 blank lines before function; 1 found
Loading history...
17
         return lsx_sharing();
0 ignored issues
show
introduced by
Found precision alignment of 1 spaces.
Loading history...
18
    }
0 ignored issues
show
Coding Style introduced by
Expected 2 blank lines after function; 0 found
Loading history...
Coding Style introduced by
Expected 1 blank line before closing function brace; 0 found
Loading history...
19
}
20