Passed
Push — master ( b97787...c0f601 )
by Jean-Christophe
16:10
created

Password   A

Complexity

Total Complexity 2

Size/Duplication

Total Lines 5
Duplicated Lines 0 %

Test Coverage

Coverage 100%

Importance

Changes 0
Metric Value
wmc 2
eloc 3
c 0
b 0
f 0
dl 0
loc 5
ccs 3
cts 3
cp 1
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A toView() 0 3 2
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 4
	public static function toView($value) {
20 4
		if ($value != null)
21 4
			return UString::mask ( $value );
22
	}
23
}
24