phpstan-symfony icon indicating copy to clipboard operation
phpstan-symfony copied to clipboard

Symfony extension for PHPStan

Results 62 phpstan-symfony issues
Sort by recently updated
recently updated
newest added

[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [nikic/php-parser](https://togithub.com/nikic/PHP-Parser) | `^4.13.0` -> `^5.0.0` | [![age](https://developer.mend.io/api/mc/badges/age/packagist/nikic%2fphp-parser/5.0.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)...

[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [slevomat/coding-standard](https://togithub.com/slevomat/coding-standard) | require-dev | major | `^7.0` -> `^8.0` | ---...

[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [psr/container](https://togithub.com/php-fig/container) | `1.0 \|\| 1.1.1` -> `1.1.2`...

This issue lists Renovate updates and detected dependencies. Read the [Dependency Dashboard](https://docs.renovatebot.com/key-concepts/dashboard/) docs to learn more. ## Open These updates have all been created already. Click a checkbox below to...

Since commit https://github.com/phpstan/phpstan-symfony/commit/2063d60f1bfe97c5702a839b3bc68d7f3fa75318 I have a error that a dic parameter is never. I am doing in the test code: ```php static::assertNotSame($this->container->getParameter('shopware.filesystem.public'), $this->container->getParameter('shopware.filesystem.theme')); ``` That both parameter keys which are...

It will be nice to support the [OptionsResolver](https://symfony.com/doc/current/components/options_resolver.html) component. By supporting I mean: - Resolving the type / prototype of each defined options - Check if the values given in...

Command::run is doing ``` try { $input->bind($this->definition); } catch (ExceptionInterface $e) { if (!$this->ignoreValidationErrors) { throw $e; } } ``` And the bind method is only throwing `ExceptionInterface` so the...

Add type of cached items to improve type checking

Currently, if a controller definition refers to a non-existent class/action method an error would be raised at time of route invocation. example routing definition: ```yaml example_route: path: /example/route controller: nonexistent_controller_class::indexAction...