Completed
Push — master ( 043688...c991a0 )
by Fabian
14:55
created

xdiff-string-merge3.php ➔ xdiff_string_merge3()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 1
nc 1
nop 4
dl 0
loc 3
rs 10
c 0
b 0
f 0
1
<?php
2
/**
3
 * Merge 3 strings into one
4
 *
5
 * @phpstub
6
 *
7
 * @param string $old_data
8
 * @param string $new_data1
9
 * @param string $new_data2
10
 * @param string $error
11
 *
12
 * @return mixed Returns the merged string, false if an internal error happened,
13
 *     or true if merged string is empty.
14
 */
15
function xdiff_string_merge3($old_data, $new_data1, $new_data2, &$error = NULL)
16
{
17
}
18
19