Simon Podlipsky
Simon Podlipsky
### Symfony version(s) affected 6.1.2 ### Description Symfony String converts `X_Y` into `xy` while I expect it to do `X_Y`. `X_Y` is in upper-snake case, the underscore should not be...
I was rewriting this code ```php /** @var SplFileInfo $file */ $filename = $file->getRealPath(); assert($filename !== false); ``` into Assertion and the `Assertion::notFalse()` method was missing. Using `Assertion::true($filename !== false)`...
Hi, is there a way to connect to the cluster? I'm looking into something similar like [setAddresses() in Spring framework](https://docs.spring.io/spring-amqp/api/org/springframework/amqp/rabbit/connection/AbstractConnectionFactory.html#setAddresses-java.lang.String-) So I can provide bunny a list of my cluster...
**Is your feature request related to a problem? Please describe.** I'm loading several pages from graphql api and need to do it asynchronously in order to make it faster **Describe...
I think this case should not fail while it currently does. I was not sure how and whether to fix it though, so I added a reproducible test case.
## Expected Behavior Type defs to be generated ## Current Behavior `Can't find stylesheet to import.` when using `@import ~...` ## Possible Solution ? ## Steps to Reproduce (for bugs)...
Remove handling of "Streams never finished rebalancing on startup" as it's no longer required (I believe it is some relict to prevent a bug that existed in Kafka v0.x)
I'd like to be able to pass [Query Parameters](https://clickhouse.yandex/docs/en/interfaces/http/#cli-queries-with-parameters) through POST body `$ curl -sS "?param_id=2¶m_phrase=test" -d "SELECT * FROM table WHERE int_column = {id:UInt8} and string_column = {phrase:String}"` When...