Valinor/docs/pages
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
..
img doc: add Open Graph meta tags 2022-06-12 16:37:58 +02:00
mapping feat: add support for wildcard in enumeration type 2022-10-04 20:44:55 +02:00
other feat: introduce utility class to build messages 2022-09-29 13:52:06 +02:00
stylesheets doc: change some settings and adjust logos 2022-06-10 23:33:28 +02:00
changelog.md release: version 0.14.0 2022-09-01 12:51:11 +02:00
credits.md doc: introduce mkdocs as a static documentation generator 2022-06-10 17:32:07 +02:00
getting-started.md doc: introduce mkdocs as a static documentation generator 2022-06-10 17:32:07 +02:00
index.md doc: remove badges from documentation index 2022-06-11 12:48:35 +02:00
message-customization.md feat: allow to declare parameter for message 2022-07-26 19:23:44 +02:00
robots.txt doc: improve documentation building process 2022-06-22 11:15:26 +02:00
source.md doc: introduce mkdocs as a static documentation generator 2022-06-10 17:32:07 +02:00
validation.md feat: introduce utility class to build messages 2022-09-29 13:52:06 +02:00