Valinor/tests
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
..
Fake misc: save type token symbols during lexing 2022-10-04 20:44:55 +02:00
Fixture feat: add support for wildcard in enumeration type 2022-10-04 20:44:55 +02:00
Functional feat: add support for wildcard in enumeration type 2022-10-04 20:44:55 +02:00
Integration feat: add support for wildcard in enumeration type 2022-10-04 20:44:55 +02:00
StaticAnalysis test: configure vimeo/psalm to verify type inference 2022-01-13 19:55:20 +01:00
Traits feat: initial release 2021-11-28 18:21:56 +01:00
Unit feat: add support for wildcard in enumeration type 2022-10-04 20:44:55 +02:00