| Conditions | 2 |
| Paths | 2 |
| Total Lines | 11 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 29 | public function getVariable() : Mailcode_Variables_Variable |
||
| 30 | { |
||
| 31 | if($this->subject instanceof Mailcode_Variables_Variable) |
||
| 32 | { |
||
| 33 | return $this->subject; |
||
| 34 | } |
||
| 35 | |||
| 36 | throw new Mailcode_Parser_Exception( |
||
| 37 | 'Subject is not a variable instance.', |
||
| 38 | null, |
||
| 39 | self::ERROR_NOT_A_VARIABLE_INSTANCE |
||
| 40 | ); |
||
| 53 |