ILIAS  trunk Revision v11.0_alpha-2638-g80c1d007f79
class.ilMailError.php
Go to the documentation of this file.
1 <?php
2 
19 declare(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=[])