| Conditions | 2 |
| Paths | 2 |
| Total Lines | 9 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 7 |
| CRAP Score | 2.0078 |
| Changes | 0 | ||
| 1 | <?php |
||
| 73 | 3 | public function __construct($chatId, float $latitude, float $longitude, string $title, $address, array $data = null) |
|
| 74 | { |
||
| 75 | 3 | $this->chatId = $chatId; |
|
| 76 | 3 | $this->latitude = $latitude; |
|
| 77 | 3 | $this->longitude = $longitude; |
|
| 78 | 3 | $this->title = $title; |
|
| 79 | 3 | $this->address = $address; |
|
| 80 | 3 | if ($data) { |
|
| 81 | $this->fill($data); |
||
| 82 | } |
||
| 85 |