Conditions | 1 |
Paths | 1 |
Total Lines | 7 |
Code Lines | 4 |
Lines | 7 |
Ratio | 100 % |
Tests | 0 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php |
||
46 | View Code Duplication | public function pFMerge($dstKey, ...$srcKeys) |
|
47 | { |
||
48 | $command = Enum::PFMERGE; |
||
49 | $args = array_merge([$dstKey], $srcKeys); |
||
50 | |||
51 | return $this->dispatch(Builder::build($command, $args)); |
||
52 | } |
||
53 | } |
||
54 |
Adding explicit visibility (
private
,protected
, orpublic
) is generally recommend to communicate to other developers how, and from where this method is intended to be used.