Valinor/tests/Fake/Definition
Romain Canon b6b3296638 feat: handle variadic parameters in constructors
Using variadic parameters is now handled properly by the library,
meaning the following example will run:

```php
final class SomeClass
{
    /** @var string[] */
    private array $values;

    public function __construct(string ...$values)
    {
        $this->values = $values;
    }
}

(new \CuyZ\Valinor\MapperBuilder())
    ->mapper()
    ->map(SomeClass::class, ['foo', 'bar', 'baz']);
```
2022-02-19 20:17:03 +01:00
..
Repository feat: handle variadic parameters in constructors 2022-02-19 20:17:03 +01:00
FakeAttributes.php feat: initial release 2021-11-28 18:21:56 +01:00
FakeClassDefinition.php refactor: remove unnecessary ClassSignature 2022-01-25 18:32:28 +01:00
FakeMethodDefinition.php feat: initial release 2021-11-28 18:21:56 +01:00
FakeNonEmptyAttributes.php feat: initial release 2021-11-28 18:21:56 +01:00
FakeParameterDefinition.php feat: handle variadic parameters in constructors 2022-02-19 20:17:03 +01:00
FakePropertyDefinition.php feat: initial release 2021-11-28 18:21:56 +01:00