Passed
Push — master ( c53668...8969dd )
by Jean-Christophe
08:33
created

Password::toView()   A

Complexity

Conditions 2
Paths 2

Size

Total Lines 3
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 0
CRAP Score 6

Importance

Changes 0
Metric Value
eloc 2
dl 0
loc 3
ccs 0
cts 3
cp 0
rs 10
c 0
b 0
f 0
cc 2
nc 2
nop 1
crap 6
1
<?php
2
3
namespace Ubiquity\contents\transformation\transformers;
4
5
use Ubiquity\utils\base\UString;
6
use Ubiquity\contents\transformation\TransformerViewInterface;
7
8
/**
9
 * Mask a password.
10
 * Ubiquity\contents\transformation\transformers$Password
11
 * This class is part of Ubiquity
12
 *
13
 * @author jcheron <[email protected]>
14
 * @version 1.0.0
15
 * @since 2.1.1
16
 */
17
class Password implements TransformerViewInterface {
18
19
	public static function toView($value) {
20
		if ($value != null)
21
			return UString::mask ( $value );
22
	}
23
}
24