Total Complexity | 1 |
Total Lines | 18 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php |
||
5 | class Username extends Element |
||
6 | { |
||
7 | /** |
||
8 | * Element name. |
||
9 | * |
||
10 | * @var string |
||
11 | */ |
||
12 | const NAME = 'Username'; |
||
13 | |||
14 | /** |
||
15 | * Constructor for Username element. |
||
16 | * |
||
17 | * @param string $username the username |
||
18 | * @param string $namespace the namespace |
||
19 | */ |
||
20 | 54 | public function __construct($username, $namespace = self::NS_WSSE) |
|
25 |