Conditions | 2 |
Paths | 1 |
Total Lines | 13 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Tests | 9 |
CRAP Score | 2.004 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
27 | 49 | public function sendCampaign(string $campaignHash, string $timeToSend = '') |
|
28 | { |
||
29 | 49 | $getParameters = []; |
|
30 | 14 | $postParameters = [ |
|
31 | 49 | 'hash' => $campaignHash, |
|
32 | 'time' => $timeToSend ?: null |
||
33 | ]; |
||
34 | |||
35 | 35 | $postParameters = array_filter($postParameters, function ($value) { |
|
36 | 49 | return $value !== null; |
|
37 | 49 | }); |
|
38 | 49 | $this->processRequest($getParameters, $postParameters); |
|
39 | 7 | return null; |
|
40 | } |
||
50 |