Valinor/tests/Fake
Romain Canon b2e810e3ce feat!: allow mapping to any type
Previously, the method `TreeMapper::map` would allow mapping only to an
object. It is now possible to map to any type handled by the library.

It is for instance possible to map to an array of objects:

```php
$objects = (new \CuyZ\Valinor\MapperBuilder())->mapper()->map(
    'array<' . SomeClass::class . '>',
    [/* … */]
);
```

For simple use-cases, an array shape can be used:

```php
$array = (new \CuyZ\Valinor\MapperBuilder())->mapper()->map(
    'array{foo: string, bar: int}',
    [/* … */]
);

echo strtolower($array['foo']);
echo $array['bar'] * 2;
```

This new feature changes the possible behaviour of the mapper, meaning
static analysis tools need help to understand the types correctly. An
extension for PHPStan and a plugin for Psalm are now provided and can be
included in a project to automatically increase the type coverage.
2022-01-02 00:48:01 +01:00
..
Cache feat: initial release 2021-11-28 18:21:56 +01:00
Definition feat: initial release 2021-11-28 18:21:56 +01:00
Mapper feat!: allow mapping to any type 2022-01-02 00:48:01 +01:00
Type feat: handle type alias import in class definition 2021-12-07 18:20:04 +01:00
FakeReflector.php feat: initial release 2021-11-28 18:21:56 +01:00