Greg Korba

Results 55 issues of Greg Korba

Static analysis tools complain about type of `$value` argument but in fact it could be of any type since it will be checked later (that's the purpose of the method).

**What does this PR change? What problem does it solve?** If enabled (using `stickyHeader` param), header with top menu will be always visible regardless of scrolling. [Live Demo](https://blog.codito.dev/). - Works...

@ondrejmirtes I've added support for `ServiceProviderInterface` and checked it against our codebase - after my changes and implementing this interface in our locators (mentioned [here](https://github.com/phpstan/phpstan-symfony/pull/151#issuecomment-1031578839)) I don't have errors, so...

Imagine scenario: - With `bin/console cache:clear` you dump DI container - In code you use `$container->get('foo');` - PHPStan reports `Service "foo" is not registered in the container` - You fix...

Considering: ``` # config/packages/enqueue.yaml enqueue: default: transport: dsn: "rdkafka://" global: bootstrap.servers: '%env(KAFKA_BOOTSTRAP_SERVERS)%' security.protocol: ssl group.id: '%env(KAFKA_GROUP_ID)%' ssl.ca.location: '%env(KAFKA_ROOT_CA)%' ssl.certificate.location: '%env(KAFKA_CERT)%' ssl.key.location: '%env(KAFKA_KEY)%' enable.ssl.certificate.verification: 'false' ssl.endpoint.identification.algorithm: 'none' enable.auto.commit: 'true' topic: auto.offset.reset:...

pinned

Satis v1.0.0 does not support Gitlab API v4. If repository type is set to `gitlab` and build command is run, Gitlab returns `410 Gone` HTTP code (we have 11.0.1 on...

- static analysis on level 1 (work in progress) - already existing errors dumped to baseline - local usage with `make sa` - GitHub Actions (based on PHPUnit flow) to...

In this case: ``` javascript var logger = log.noConflict(); logger.log = logger.methodFactory('log', logger.levels.DEBUG); logger.setLevel(app.config.debug === true ? logger.levels.TRACE : logger.levels.SILENT); ``` Calling `logger.log('Something')` will output data even if `app.config.debug ===...

There is some edge case scenario, that happens sometimes in our organisation: - Install Captain Hook and its hooks - `vendor/bin/captainhook` is created, `vendor/captainhook/captainhook` is available, everything works in Git...

Fixes #249 ℹ️ INFO I think it can be cleaned up to minimise redundancy, but I did not want refactor current process, rather follow existing convention. `Dockerfile`s are fully backward...