| Conditions | 2 |
| Paths | 2 |
| Total Lines | 8 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 34 | public static function downloadFile(string|null $destination = null, string|null $file_id = null): bool { |
||
| 35 | $file = telegram::getFile(); |
||
| 36 | if (isset($file->file_path)) { |
||
| 37 | $file_path = settings::$down_url.'bot'.settings::$token.'/'.$file->file_path; |
||
| 38 | return tools::downloadFile($file_path,$destination); |
||
|
|
|||
| 39 | } |
||
| 40 | else { |
||
| 41 | return false; |
||
| 42 | } |
||
| 44 | } |