Conditions | 3 |
Paths | 4 |
Total Lines | 13 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Changes | 2 | ||
Bugs | 1 | Features | 0 |
1 | <?php |
||
62 | public function getParameters() |
||
63 | { |
||
64 | $parameters = [ |
||
65 | 'ACTIVITE' => $this->activity, |
||
66 | 'DATEQ' => $this->date instanceof \DateTime ? $this->date->format('dmYHis') : null, |
||
67 | ]; |
||
68 | |||
69 | if (true === $this->showCountry) { |
||
70 | $parameters['PAYS'] = ''; |
||
71 | } |
||
72 | |||
73 | return $parameters; |
||
74 | } |
||
75 | } |
||
76 |