Zeljko Mitic
Zeljko Mitic
I created new repository and tried symfony/panther package. After running composer command from container, this was added to Dockerfile: ```Dockerfile ###> symfony/panther ### # Chromium and ChromeDriver ENV PANTHER_NO_SANDBOX 1...
This is the fix for ^6.3 forms. For some reason, psalm didn't infer interface signature once `@return void` was added. Also fixed the long-standing issue with `FormView::$vars`, now with unsealed...
Added templates for QueryBuilder, Query and EntityRepository. --- With repository defined like: ```php /** * @extends EntityRepository */ class ProductRepository extends EntityRepository{} ``` Using it: ```php $qb = $productRepository->createQueryBuilder('p'); //...
If I have a state definition like this (shortened for readibility): ```ts let states = [ { name: 'app.profile', url: '/profile', views: { $default: {component: ProfileComponent}, //
Is there a way to go around the SQLite limitation? I use it only [for fast testing](https://github.com/liip/LiipTestFixturesBundle/blob/2.x/doc/configuration.md#configuration) and tests don't even need to cover this value. The error I get...
**Describe the bug** When an entity has required arguments in the constructor, we must use [empty_data callable](https://symfony.com/doc/current/form/use_empty_data.html#option-2-provide-a-closure). Later in the controller, fetching that newly created entity is done like this:...
https://psalm.dev/r/8c2110b83b #### Problem 1: Psalm-trace correctly shows that $id is ``string``, but in the next line, it thinks it is ``null|string``. Reproducer: https://3v4l.org/k51io#v8.1.4 #### Problem 2: If the line 4...