| Conditions | 1 |
| Paths | 1 |
| Total Lines | 7 |
| Code Lines | 4 |
| Lines | 7 |
| Ratio | 100 % |
| Tests | 4 |
| CRAP Score | 1 |
| Changes | 0 | ||
| 1 | <?php |
||
| 46 | 1 | View Code Duplication | public function pFMerge($dstKey, ...$srcKeys) |
| 47 | { |
||
| 48 | 1 | $command = Enum::PFMERGE; |
|
| 49 | 1 | $args = array_merge([$dstKey], $srcKeys); |
|
| 50 | |||
| 51 | 1 | 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.