ILIAS  trunk Revision v11.0_alpha-3011-gc6b235a2e85
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)