Christophe Coevoet
Christophe Coevoet
In the `Cleanup & GitHub OAuth Token` chapter of the ancistrano screencast, you advice to use a github token to avoid rate limiting issues for github downloads. This advice is...
```php #[Sealed(permits: [ColorFormatEnum::class, SpanColorFormat::class])] interface ColorFormat { } enum ColorFormatEnum implements ColorFormat { /** * A color defined using the `rgb()` or `rgba()` functions. */ case rgbFunction; /** * A...
See https://github.com/sass/sass/issues/3702
See https://github.com/sass/sass/issues/3702
This would avoid the need for PRs like https://github.com/sass/sass-site/pull/1041 fixing the menu after the fact due to forgetting them.
Renaming a Twig template correctly identifies its usages in `->render()` calls as places that are impacted by the renaming. However, the renaming replacing the whole string containing a template name...
the `$options` argument of the various methods in FormTypeInterface and FormTypeExtensionInterface are typed as `array` for now, because there is no other way to type them in phpdoc. However, the...
When enabling `failOnWarnings`, the warnings should be displayed by default otherwise, we get a failed run without explanation (same for the other `failOn*` settings).
The webhook component has 2 parts: - the client part, which handles receiving webhooks in a controller (provided in the component) which parses the payload into a RemoteEvent with a...
https://psalm.dev/r/634c35d072 Psalm complains when comparing the return value to `false`. But the method can return false: https://www.php.net/manual/en/sqlite3result.columnname.php