disable_sharing()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 2
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 1
nc 1
nop 1
dl 0
loc 2
rs 10
c 0
b 0
f 0
1
<?php
2
/**
3
 * LSX Health Plan Plan specific functions.
4
 *
5
 * @package lsx-health-plan
6
 */
7
8
namespace lsx_health_plan\functions\triggers;
9
10
/**
0 ignored issues
show
Coding Style Documentation introduced by
Doc comment for parameter "$disabled" missing
Loading history...
11
 * Return a true or false if the search is enabled.
12
 *
13
 * @return boolean
14
 */
15
function disable_sharing( $disabled ) {
0 ignored issues
show
Coding Style introduced by
Expected 2 blank lines before function; 1 found
Loading history...
16
	return true;
17
}
0 ignored issues
show
Coding Style introduced by
Expected 1 blank line before closing function brace; 0 found
Loading history...
18