Valinor/tests/Fixture
Romain Canon 69ebd19ee8 feat: add support for wildcard in enumeration type
This notation can be used when several cases in an enum share a common
prefix.

```php
enum SomeEnum: string
{
    case FOO = 'foo';
    case BAR = 'bar';
    case BAZ = 'baz';
}

$mapper = (new MapperBuilder())->mapper();

$mapper->map('SomeEnum::BA*', 'foo'); // error
$mapper->map('SomeEnum::BA*', 'bar'); // ok
$mapper->map('SomeEnum::BA*', 'baz'); // ok
```
2022-10-04 20:44:55 +02:00
..
Annotation feat: initial release 2021-11-28 18:21:56 +01:00
Attribute fix: handle native attribute on promoted parameter 2022-07-31 15:42:58 +02:00
Enum feat: add support for wildcard in enumeration type 2022-10-04 20:44:55 +02:00
Object fix: handle native attribute on promoted parameter 2022-07-31 15:42:58 +02:00