ILIAS  trunk Revision v11.0_alpha-3011-gc6b235a2e85
class.ilMailError.php
Go to the documentation of this file.
1<?php
2
19declare(strict_types=1);
20
22{
26 public function __construct(protected string $language_variable, protected array $place_holder_values = [])
27 {
28 }
29
30 public function getLanguageVariable(): string
31 {
32 return $this->language_variable;
33 }
34
38 public function getPlaceHolderValues(): array
39 {
40 return $this->place_holder_values;
41 }
42}
__construct(protected string $language_variable, protected array $place_holder_values=[])