Anatoly Pashin
Anatoly Pashin
Composer 2.0 is released and its API changed: https://github.com/composer/composer/blob/2.0.0/UPGRADE-2.0.md ``` The "ssx/skrub" plugin was skipped because it requires a Plugin API version ("1.1.0") that does not match your Composer installation...
The tool should also remove things from autoloader, especially from the class map. Such missing files produce errors on every composer call: ``` composer require name/redacted Could not scan for...
``` ------ ---------------------------------------------------------------------------------------- Line someClassFile.php ------ ---------------------------------------------------------------------------------------- 45 [Line 47] Function makeNotificationFromFixture() has an unused variable $createdAt. ``` ``` private static function makeNotificationFromFixture($fixtureData): array { $createdAt = 'some value'; //...
This will allow to pass a type for `rowData` (currently it resolves to `never`).
``` Fatal error: Declaration of WoohooLabs\Yin\JsonApi\Request\AbstractRequest::withCookieParams(array $cookies) must be compatible with Psr\Http\Message\ServerRequestInterface::withCookieParams(array $cookies): Psr\Http\Message\ServerRequestInterface in /srv/app/vendor/woohoolabs/yin/src/JsonApi/Request/AbstractRequest.php on line 212 ``` `ServerRequestInterface` now has the return types specified, so `AbstractRequest` must...
It's deprecated
Need binary with `path` arg support
# Bug report Instantiating an interface shouldn't be treated as a side-effect-free. ### Code snippet that reproduces the problem https://phpstan.org/r/c5f469ab-1244-47e3-8af6-668f5b471289 ### Expected output No issue ### Did PHPStan help you...
Some resources are immutable (or app should not revalidate their contents). For now, I have to use it like this: ```ts const { data: itemInfoData } = client.users.list.useSWR( {some: "params"},...