Dorian Villet
Dorian Villet
# Bug report Hello there! I have a few classes that represents configurations for our application. A big constant array in an interface describes various metadata for these configurations. I'm...
Hello there, I've been trying twice in the last couple of months, when doing packages upgrades, to use the auto-generated `Symfony\Config\NelmioApiDocConfig` PHP config class (that you can find in Symfony's...
Hello there, I've noticed that `YearWeek`, `YearMonth` and `Year` each have a `__toString()` method returning an ISO representation of the object, but none have a `public static function parse(string $iso):...
Hello there, We've started integrating our code a while ago with this package. In some places, we've extended over time the number of classes that are supported as input by...
### Bug report Hello there! I've just upgraded to the latest and greatest version of PHPStan (1.10.50) and this issue appeared : > Parameter #1 $array of function collectWithKeys expects...
Hello there, I've just tried upgrading to PHPUnit 10 on our project, and I notice the changelog says : > - Removed the --printer option > - Removed the printerClass...
I'm currently putting up an up-to-date Drifter environment on Ubuntu 18.04 with a LAMP stack for an HTTPS API project. I've set `ssl: yes` in `virtualization/parameters.yml`. After the provisioning, it...
### TODO - [x] Add unit test - [ ] Implement feature (details to be discussed in #17)
In a folder, I have two files : 1. `BlobNormalizer.php` (non final) 2. `FileBlobNormalizer.php` (final, extends BlobNormalizer) Running `vendor/bin/swiss-knife finalize-classes [folder]` adds `final` to `BlobNormalizer`. Here are the files :...
I have a few classes that should not be inherited, but are sometimes mocked in tests. For these, I use a `@final` annotation, supported by PHPStan, so that no one...