Major Refactoring

This commit is contained in:
Netkas 2023-02-14 17:35:16 -05:00
parent 3de87df2d9
commit 54a8a59ee8
83 changed files with 892 additions and 918 deletions

View file

@ -65,8 +65,8 @@
{
$object = new self();
$object->request_id = @$data['request_id'];
$object->chat_id = @$data['chat_id'];
$object->request_id = $data['request_id'] ?? null;
$object->chat_id = $data['chat_id'] ?? null;
return $object;
}