Alexander Borisov
Alexander Borisov
Workaround: ```php use Doctrine\Bundle\DoctrineBundle\DependencyInjection\Compiler\DoctrineOrmMappingsPass; class Kernel extends BaseKernel { use MicroKernelTrait; protected function build(ContainerBuilder $container): void { $this->registerMapping($container); } private function registerMapping(ContainerBuilder $container): void { $finder = Finder::create(); $finder ->in(__DIR__)...
Thank you! Sorry for late answer. Resolved in #425
Do you have any constraints on these fields? Looks like the problem is in `DateTime` constraint. In `5.0` you need to use `Type("\DateTime")` constraint See https://github.com/symfony/symfony/blob/master/UPGRADE-5.0.md > Removed support for...
> As I said earlier, PageType class does not have the createdAt and updatedAt fields at all. `symfony/form` does not validate data itself, it delegate this functionality to `symfony/validator` which...
So it's not possible to handle those objects. Any workaround?
it would be great to add a line to `CHANGELOG.md`
You can't
You can't intercept otp codes
For php ^8.0 you can use named arguments: ```php $api->sendMessage( chatId: $update->getMessage()->getChat()->getId(), text: $text, replyMarkup: new InlineKeyboardMarkup(/**/), ); ```
Maybe add a `tag` function which will use `Reference::to('tag@'. $value);`?