Skip to content

Commit

Permalink
Fixed build issues with php 5.6 (type hinting)
Browse files Browse the repository at this point in the history
- Removed type hinting in UndefinedVariableException
  • Loading branch information
matthes committed May 8, 2018
1 parent bbedaa3 commit 153db4d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/UndefinedVariableException.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ class UndefinedVariableException extends TemplateParsingException

protected $triggerVarName;
public function __construct(
string $message = "",
string $triggerVarName,
$message = "",
$triggerVarName,
Throwable $previous = null
) {
$this->triggerVarName = $triggerVarName;
Expand Down

0 comments on commit 153db4d

Please sign in to comment.