Valinor/tests/Fixture
Romain Canon 1244c2d68f feat: add support for class constant type
This notation is mainly useful when several cases in constants of a
class share a common prefix.

```php
final class SomeClassWithConstants
{
    public const FOO = 1337;

    public const BAR = 'bar';

    public const BAZ = 'baz';
}

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

$mapper->map('SomeClassWithConstants::BA*', 1337); // error
$mapper->map('SomeClassWithConstants::BA*', 'bar'); // ok
$mapper->map('SomeClassWithConstants::BA*', 'baz'); // ok
```
2022-10-04 22:15:02 +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 feat: add support for class constant type 2022-10-04 22:15:02 +02:00