ILIAS  trunk Revision v12.0_alpha-1540-g00f839d5fa1
MailAttachment.php
Go to the documentation of this file.
1<?php
2
19declare(strict_types=1);
20
22
23final readonly class MailAttachment
24{
25 public function __construct(
26 private string $path,
27 private string $filename
28 ) {
29 }
30
31 public function getPath(): string
32 {
33 return $this->path;
34 }
35
36 public function getFilename(): string
37 {
38 return $this->filename;
39 }
40}
$filename
Definition: buildRTE.php:78
__construct(private string $path, private string $filename)
$path
Definition: ltiservices.php:30