homersimpsons
homersimpsons
Is there any news on this ? Why this change has been made ? => I guess this is about ["Nuxt smart pre-fetch" feature](https://nuxtjs.org/blog/introducing-smart-prefetching). => This cause issues to fetch...
Thank you for this blazing fast response. I did update it. The problem is that `Mailbox::prepareMessageIds` needs `\ArrayIterator::getArrayCopy` which is not in `MailboxInterface`. What is the expected fix ?
Actually we could have something along ```php if ($messageIds instanceof MessageIterator) { $messageIds = $messageIds->getArrayCopy(); } elseif ($messageIds instanceof MessageIteratorInterface) { $messageIds = iterator_to_array($messageIds, false); } ```
It seems to be removed in this commit: https://github.com/EducationLink/vue-tel-input/commit/fc5b78bb6649cdea7769afa8793eff69a05ca471 I do not really know why they did this. Maybe because of the difficulties for more examples (https://github.com/EducationLink/vue-tel-input/issues/176) I suggest that...
It seems that [mozilla/lmdb-rs](https://github.com/mozilla/lmdb-rs) is getting replaced by https://github.com/mozilla/rkv
As the output pasted is not full (some parts have been escaped) I repaste it here: ``` fatal: |: no such path in the working tree. Use 'git -- ...'...
For the record I did this quick development in my project: ```php // src/Kernel.php namespace App; use Liip\ImagineBundle\Imagine\Filter\Loader\LoaderInterface; use Symfony\Bundle\FrameworkBundle\Kernel\MicroKernelTrait; use Symfony\Component\DependencyInjection\Compiler\CompilerPassInterface; use Symfony\Component\DependencyInjection\Compiler\PassConfig; use Symfony\Component\DependencyInjection\ContainerBuilder; use Symfony\Component\HttpKernel\Kernel as BaseKernel;...
I just noticed that post processors have the same verbosity.
> glad if you want to do a pull request to set up autoconfiguration I did open #1486 as a draft but I would like to go further (maybe for...
I confirm this issue still exists, as an alternative we can use `SQL_TSI_SECOND` over `SECOND` which avoid the ambiguity. ```php $parser = new PHPSQLParser(); $parsed = $parser->parse('SELECT TIMESTAMPDIFF(SQL_TSI_SECOND, NOW(), NOW())...