Valerii Ozarnichuk

Results 20 issues of Valerii Ozarnichuk

We have Doctrine 2.3 event subscriber. In a postFlush method we call a repository that has an injection. And it's not work Example subscriber: ``` use Doctrine\ORM\Event\PostFlushEventArgs; use Doctrine\Common\EventSubscriber; class...

When async client try to connect to RabbitMQ which down (or not exists) its just hangs. No errors, no exceptions...no reaction. Reactphp loop stil works, but Bunny hangs. Is it...

I get this error with no reason. Sometimes after 5 minutes, sometimes after 30 and then. Error occur only on prod with much load. I have much jobs, but do...

В примере вы выставляете setSecret('SECRET'); а потом сразу выводите ссылку getUrl(); В этом случае в ссылке будет присутствовать client_secret с ключем приложения, который должен быть исключительно приватным и не сообщаться...

**Is your feature request related to a problem? Please describe.** Today not all email clients can show css styles. Even now best is just inline all css into html style=""...

enhancement

I create file with stream writer. Nothing special, just text (file attached). File has size ~50Mb. But if I open it and save via Excel/Numbers to same xlsx format -...

**Description** I use StreamWriter for generate large xlsx files. It's just text files: no formatting/styles. ```go // about 100 columns with different data. But data size does not seriously matter...

May you add stylized checkboxes and radio buttons? Like this: http://www.material-ui.com/#/components/checkbox http://www.material-ui.com/#/components/radio-button And toggle: http://www.material-ui.com/#/components/toggle It could be very good.

wontfix

``` $key = md5(microtime(true)); $cache = $pool->getItem($key); $cache->set('Test value'); $cache->save(); if ($cache->isMiss()) { echo 'Missed', PHP_EOL; } echo 'Value: ', $cache->get(), PHP_EOL; ``` No matter what driver is used. It...

I have a class with method which gets data from MySQL. In this method I use: ``` if ($cacheItem->isMiss()) { $cacheItem->lock(); ... $cacheItem->save(); } ``` All looks well, but in...