Valinor/tests/Functional/Definition/Repository/Cache/Compiler
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
..
AttributesCompilerTest.php fix: handle nested attributes compilation 2021-12-27 20:57:38 +01:00
ClassDefinitionCompilerTest.php feat: handle variadic parameters in constructors 2022-02-19 20:17:03 +01:00
FunctionDefinitionCompilerTest.php feat: handle variadic parameters in constructors 2022-02-19 20:17:03 +01:00
TypeCompilerTest.php feat: handle integer range type 2021-12-07 18:20:25 +01:00