Armando Lüscher
Armando Lüscher
Thanks @debo Basically, we "just" need to get the main changes in that are required to release v1. To name a few: #232 #817 #826 #831
@debo Looks like the tests are failing because the namespaces of the test files need to be updated too.
@debo Looks like your branch wasn't rebased / updated correctly, so I've merged develop in and fixed the problematic namespace declaration 👍
@jacklul I noticed that the [`insertUser`](https://github.com/php-telegram-bot/core/blob/1785d98fe639cd0aad183d887461de5b2d27e660/src/DB.php#L383) and [`insertChat`](https://github.com/php-telegram-bot/core/blob/1785d98fe639cd0aad183d887461de5b2d27e660/src/DB.php#L451) methods can be passed a `$date` to override the `created_at` and `updated_at` fields. I'm just wondering how useful that actually is, as...
`Message` has the `date`, `forward_date` and `edit_date` fields anyway, so those should be safe. So it's mainly the `Chat` itself that is a bit off. `Update` object also has no...
I have a working version (I think), needs some further testing and then I'll release it :+1:
My latest experiment, which I'll pack into a small package when it works 100%. Try the class below, and use it like: ```php $entity_decoder = new EntityDecoder($message, 'markdown'); // or...
Hi @jyxjjj, I'm not sure I understand what the benefit is of changing to enums, could you please explain more? Also, this project is ready for PHP8.1. It just doesn't...
Thanks for the feedback @jyxjjj. I'll close this for now, but we can always come back to this if need be in the future.
Not quite sure I understand. **On 0.35** ->type = "Message" ->text = "/c@b" When I try sending a message to a "foreign" bot within my bot, it gets executed as...