Toon Verwerft
Toon Verwerft
While using php-vcr, some deprecations pop up. Example: - Deprecated: Return type of VCR\Storage\Yaml::valid() should either be compatible with Iterator::valid(): bool, or the #[\ReturnTypeWillChange] attribute should be used to temporarily...
We are implementing some magento functionality through it's SOAP API. While testing the integration, we receive following error: ``` SoapFault: looks like we got no XML document ``` After examining...
This PR can be used to discuss the syntax of a new Set datastructure. https://en.wikipedia.org/wiki/Set_(abstract_data_type) https://www.php.net/manual/en/class.ds-set.php Additionally, we can introduce `Vec\unique` and `Vec\unique_by` functions based on this data structure.
Currently, it is not possible to convert a float -> string. https://github.com/azjezz/psl/blob/c34f75bcb27298a1fdb017c07cd90f07c78046e2/src/Psl/Type/Internal/StringType.php#L39 The other way around (string -> float) is possible. We could go for one of these solutions to...
**Describe the bug** When calling `Dict\take()` and `Dict\take_while()` twice on an iterator, you receive a fatal exception. More info, see https://github.com/azjezz/psl/pull/215. **To Reproduce** ```php use Psl\Dict; $gen = (function() {...
Can you update the README file on how the plugin should be configured/used? Thanks!
### Feature Request | Q | A |------------ | ------ | New Feature | no | RFC | no | BC Break | no #### Summary Currently the autoloader requires...
This code best describes it: https://psalm.dev/r/f86eb62c76 ```php /** * @template A */ class Config { /** * @param (callable(): A)|null $x */ public function __construct($x = null) {} /** *...
### Bug Report | Q | A |------------ | ------ | BC Break | no | Version | See new PRs: #33, #34, #35 * [ ] Failing unit tests...