Antoine Lamirault
Antoine Lamirault
| Q | A | ------------- | --- | Branch? | 6.2 | Bug fix? | no | New feature? | yes | Deprecations? | yes | Tickets | Fix...
| Q | A | ------------- | --- | Branch? | 6.2 | Bug fix? | no | New feature? | no | Deprecations? | yes | Tickets | Fix...
| Q | A | ------------- | --- | Branch? | 6.2 | Bug fix? | no | New feature? | yes | Deprecations? | yes | Tickets | Fix...
Hello, I added phpstan until level 7 (8 is max level). I hope is ok for you :slightly_smiling_face:
WIP Upgrade php-cs from `^2.16` to `3.4`. Upgrading of composer/composer and composer/semver are required.
Proposal for issue #4852
Since https://github.com/sebastianbergmann/phpunit/pull/3687 `setMethods` is deprecated in favor of `onlyMethods` and `addMethods` It was possible to do this ```php $this->getMockBuilder('UnknownClass') ->allowMockingUnknownTypes() ->setMethods(['execute']) ->getMock(); ``` but with ```php $this->getMockBuilder('UnknownClass') ->allowMockingUnknownTypes() ->addMethods(['execute']) ->getMock();...
Hello, `Throwable` interface was introduce in PHP 7.0 as base interface for any object that can be thrown. Currently phpunit has only `expectException*` methods but they can work with `Throwable`...
This PR allow to use database indexes by replace LIKE by equal sign when condition_pattern is STRING_EQUALS
| Q | A | ------------- | --- | Branch? | 5.4 | Bug fix? | yes | New feature? | no | Deprecations? | no | Tickets | Fix...