ILIAS  release_9 Revision v9.13-25-g2c18ec4c24f
PureJsonMailEncoder.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
21 namespace 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)