Total Complexity | 4 |
Total Lines | 23 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
18 | class ImplodeKeys extends ARule |
||
19 | { |
||
20 | protected IUser $userSource; |
||
21 | protected ICert $certSource; |
||
22 | protected IStatus $libStatus; |
||
23 | protected string $glue = ''; |
||
24 | |||
25 | 8 | public function __construct(IUser $userSource, ICert $certSource, IStatus $libStatus, string $glue = '|') |
|
26 | { |
||
27 | 8 | $this->userSource = $userSource; |
|
28 | 8 | $this->certSource = $certSource; |
|
29 | 8 | $this->libStatus = $libStatus; |
|
30 | 8 | $this->glue = $glue; |
|
31 | 8 | } |
|
32 | |||
33 | 8 | public function validate(IValidate $entry): void |
|
41 | } |
||
42 | 3 | } |
|
44 |