ILIAS  release_6 Revision v6.24-5-g0c8bfefb3b8
All Data Structures Namespaces Files Functions Variables Modules Pages
class.ilMailError.php
Go to the documentation of this file.
1 <?php
2 /* Copyright (c) 1998-2016 ILIAS open source, Extended GPL, see docs/LICENSE */
3 
9 {
11  protected $languageVariable = '';
12 
14  protected $placeHolderValues = [];
15 
21  public function __construct(string $languageVariable, array $placeHolderValues = [])
22  {
23  $this->languageVariable = $languageVariable;
24  $this->placeHolderValues = $placeHolderValues;
25  }
26 
30  public function getLanguageVariable() : string
31  {
33  }
34 
38  public function getPlaceholderValues() : array
39  {
41  }
42 }
Class ilMailError.
__construct(string $languageVariable, array $placeHolderValues=[])
ilMailError constructor.