Valinor/src
Romain Canon cb87925aac feat: introduce utility class to build messages
The new class `\CuyZ\Valinor\Mapper\Tree\Message\MessageBuilder` can be
used to easily create an instance of (error) message.

This new straightforward way of creating messages leads to the
depreciation of `\CuyZ\Valinor\Mapper\Tree\Message\ThrowableMessage`.

```php
$message = MessageBuilder::newError('Some message / {some_parameter}.')
    ->withCode('some_code')
    ->withParameter('some_parameter', 'some_value')
    ->build();
```
2022-09-29 13:52:06 +02:00
..
Attribute feat: handle abstract constructor registration 2022-08-29 23:09:15 +02:00
Cache fix: add return types for cache implementations 2022-09-24 19:29:02 +02:00
Definition fix: properly handle static anonymous functions 2022-09-24 20:01:53 +02:00
Library feat!: introduce constructor for custom date formats 2022-09-01 12:24:24 +02:00
Mapper feat: introduce utility class to build messages 2022-09-29 13:52:06 +02:00
Type misc: remove unused code 2022-09-29 13:52:06 +02:00
Utility fix: handle classes in a case-sensitive way in type parser 2022-08-29 23:09:15 +02:00
MapperBuilder.php feat: introduce utility class to build messages 2022-09-29 13:52:06 +02:00