ILIAS  trunk Revision v12.0_alpha-377-g3641b37b9db
PureJsonMailEncoder.php
Go to the documentation of this file.
1<?php
2
19declare(strict_types=1);
20
21namespace ILIAS\Mail\Object;
22
24{
25 public function __construct(private readonly \ilMailValueObjectJsonService $serialization_service)
26 {
27 }
28
29 public function encode(array $mails): string
30 {
31 return $this->serialization_service->convertToJson($mails);
32 }
33}
__construct(private readonly \ilMailValueObjectJsonService $serialization_service)