| 1 | <?php |
||
| 6 | class ErrorMessage |
||
| 7 | { |
||
| 8 | protected $template = 'Invalid'; |
||
| 9 | protected $variables = []; |
||
| 10 | |||
| 11 | 36 | public function __construct($template = '', $variables = []) |
|
| 12 | { |
||
| 13 | 36 | $this->setTemplate($template) |
|
| 14 | 36 | ->setVariables($variables); |
|
| 15 | 36 | } |
|
| 16 | |||
| 17 | 36 | public function setTemplate($template) |
|
| 26 | |||
| 27 | public function getTemplate() |
||
| 28 | { |
||
| 29 | return $this->template; |
||
| 30 | } |
||
| 31 | |||
| 32 | 36 | public function setVariables($variables = []) |
|
| 40 | |||
| 41 | public function getVariables() |
||
| 42 | { |
||
| 45 | |||
| 46 | 20 | public function __toString() |
|
| 57 | } |
||
| 58 |