Valinor/tests/Unit/Mapper/Tree
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
..
Builder feat: add support for wildcard in enumeration type 2022-10-04 20:44:55 +02:00
Message feat: introduce utility class to build messages 2022-09-29 13:52:06 +02:00
NodeTest.php fix: handle invalid nodes recursively 2022-08-29 23:09:15 +02:00
NodeTraverserTest.php feat!: refactor tree node API 2022-07-10 19:28:36 +02:00
ShellTest.php misc: add fixed value for root node path 2022-07-26 19:28:46 +02:00