Skip to content
This repository has been archived by the owner on Dec 5, 2019. It is now read-only.

Commit

Permalink
fix CompilerException for php 5.2
Browse files Browse the repository at this point in the history
  • Loading branch information
oyejorge committed Dec 9, 2013
1 parent 5bee05a commit b2041cc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/Less/Exception/CompilerException.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ class Less_CompilerException extends Exception {

private $filename;

public function __construct($message = null, $code = 0, Exception $previous = null, $filename = null) {
parent::__construct($message, $code, $previous);
public function __construct($message = null, $code = 0, Exception $previous = null, $filename = null ){
parent::__construct($message, $code);
$this->filename = $filename;
}

Expand Down

0 comments on commit b2041cc

Please sign in to comment.