Simon Podlipsky

Results 337 comments of Simon Podlipsky

Sure, we can still develop current version but have 16.x alongside it already. Similar case is e.g. with dbal https://github.com/doctrine/dbal where current is v3.6 but v4.0 is developed as well....

How to use it with react? ```jsx { SwaggerUIBundle({ docExpansion: 'list', dom_id: '#swagger-ui', url: `${apiUri}/doc.json`, }); }} id="swagger-ui" /> ```

Adding a `dark-mode` class to `html` element fiddles with other app styles as well. E.g. this affects app's background so it's kinda no go as styles are not isolated for...

@spawnia do you see dropping php7.4 support anytime soon?

@spawnia https://github.com/rdohms/phpunit-arraysubset-asserts seems unmaintained. What do you suggest to do about it?

```ts import type { TypePolicy } from '@apollo/client'; import type { Foo, Bar } from '@app/gql/graphql'; import { replaceArray } from './helpers'; export const networkPortTypePolicy: TypePolicy = { fields: {...

```php public function foo(Operator $operator) { $queryBuilder = $this->entityManager->createQueryBuilder(); $expr = $queryBuilder->expr(); $comparator = match ($operator) { Operator::Eq => $expr->in(...), Operator::Neq => $expr->notIn(...), }; $filter = $comparator('e.id', [1, 2, 3]);...